2013-02-05 15:09:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Brian Rosenberger (Brutex Network)
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package net.brutex.xservices.util.cache;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.util.List;
|
|
|
|
|
2018-05-03 07:24:04 +02:00
|
|
|
import org.apache.logging.log4j.Logger;
|
2013-02-05 15:09:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Brian Rosenberger, bru(at)brutex.de
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class FindingsConfigBean {
|
2018-05-03 07:24:04 +02:00
|
|
|
|
|
|
|
private Logger logger;
|
2013-02-05 15:09:13 +01:00
|
|
|
private final int instanceid;
|
2018-05-03 07:24:04 +02:00
|
|
|
|
2013-02-05 15:09:13 +01:00
|
|
|
private File cvsconfig;
|
|
|
|
private int cacheinterval = 15;
|
|
|
|
private List<Object> filepatterns;
|
|
|
|
private List<Object> contentpatterns;
|
|
|
|
|
|
|
|
public FindingsConfigBean(int instanceid, Logger logger) {
|
|
|
|
this.instanceid = instanceid;
|
|
|
|
this.logger = logger;
|
2018-05-03 07:24:04 +02:00
|
|
|
logger.debug("Initialise FindingsConfigBean instance '" + instanceid + "'");
|
|
|
|
|
2013-02-05 15:09:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the cache interval
|
|
|
|
*/
|
|
|
|
public int getCacheinterval() {
|
|
|
|
return cacheinterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-03 07:24:04 +02:00
|
|
|
* @param cacheinterval
|
|
|
|
* the cache interval to set
|
2013-02-05 15:09:13 +01:00
|
|
|
*/
|
|
|
|
public void setCacheinterval(int cacheinterval) {
|
|
|
|
this.cacheinterval = cacheinterval;
|
|
|
|
}
|
2018-05-03 07:24:04 +02:00
|
|
|
|
2013-02-05 15:09:13 +01:00
|
|
|
/**
|
|
|
|
* @return the cvsconfig
|
|
|
|
*/
|
|
|
|
public File getCvsconfig() {
|
|
|
|
return cvsconfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-03 07:24:04 +02:00
|
|
|
* @param cvsconfig
|
|
|
|
* the cvsconfig to set
|
2013-02-05 15:09:13 +01:00
|
|
|
*/
|
|
|
|
public void setCvsconfig(File cvsconfig) {
|
|
|
|
this.cvsconfig = cvsconfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the filepatterns
|
|
|
|
*/
|
|
|
|
public List<Object> getFilepatterns() {
|
|
|
|
return filepatterns;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-03 07:24:04 +02:00
|
|
|
* @param filepatterns
|
|
|
|
* the filepatterns to set
|
2013-02-05 15:09:13 +01:00
|
|
|
*/
|
|
|
|
public void setFilepatterns(List<Object> filepatterns) {
|
|
|
|
this.filepatterns = filepatterns;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the contentpatterns
|
|
|
|
*/
|
|
|
|
public List<Object> getContentpatterns() {
|
|
|
|
return contentpatterns;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-03 07:24:04 +02:00
|
|
|
* @param contentpatterns
|
|
|
|
* the contentpatterns to set
|
2013-02-05 15:09:13 +01:00
|
|
|
*/
|
|
|
|
public void setContentpatterns(List<Object> contentpatterns) {
|
|
|
|
this.contentpatterns = contentpatterns;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param instanceid
|
|
|
|
*/
|
2018-05-03 07:24:04 +02:00
|
|
|
|
2013-02-05 15:09:13 +01:00
|
|
|
}
|