Subversion Repositories XServices

Rev

Rev 102 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 102 Rev 185
Line 17... Line 17...
17
package net.brutex.xservices.util.cache;
17
package net.brutex.xservices.util.cache;
Line 18... Line 18...
18
 
18
 
19
import java.io.File;
19
import java.io.File;
Line 20... Line -...
20
import java.util.List;
-
 
21
 
20
import java.util.List;
Line 22... Line 21...
22
import org.apache.commons.configuration.PropertiesConfiguration;
21
 
23
import org.apache.log4j.Logger;
22
import org.apache.logging.log4j.Logger;
24
 
23
 
25
/**
24
/**
26
 * @author Brian Rosenberger, bru(at)brutex.de
25
 * @author Brian Rosenberger, bru(at)brutex.de
Line 27... Line 26...
27
 *
26
 *
28
 */
-
 
29
public class FindingsConfigBean {
27
 */
Line 30... Line 28...
30
	
28
public class FindingsConfigBean {
31
	private final Logger logger;
29
 
32
	
30
	private Logger logger;
Line 50... Line 48...
50
	public int getCacheinterval() {
48
	public int getCacheinterval() {
51
		return cacheinterval;
49
		return cacheinterval;
52
	}
50
	}
Line 53... Line 51...
53
 
51
 
-
 
52
	/**
54
	/**
53
	 * @param cacheinterval
55
	 * @param cacheinterval the cache interval to set
54
	 *            the cache interval to set
56
	 */
55
	 */
57
	public void setCacheinterval(int cacheinterval) {
56
	public void setCacheinterval(int cacheinterval) {
58
		this.cacheinterval = cacheinterval;
57
		this.cacheinterval = cacheinterval;
Line 64... Line 63...
64
	public File getCvsconfig() {
63
	public File getCvsconfig() {
65
		return cvsconfig;
64
		return cvsconfig;
66
	}
65
	}
Line 67... Line 66...
67
 
66
 
-
 
67
	/**
68
	/**
68
	 * @param cvsconfig
69
	 * @param cvsconfig the cvsconfig to set
69
	 *            the cvsconfig to set
70
	 */
70
	 */
71
	public void setCvsconfig(File cvsconfig) {
71
	public void setCvsconfig(File cvsconfig) {
72
		this.cvsconfig = cvsconfig;
72
		this.cvsconfig = cvsconfig;
Line 78... Line 78...
78
	public List<Object> getFilepatterns() {
78
	public List<Object> getFilepatterns() {
79
		return filepatterns;
79
		return filepatterns;
80
	}
80
	}
Line 81... Line 81...
81
 
81
 
-
 
82
	/**
82
	/**
83
	 * @param filepatterns
83
	 * @param filepatterns the filepatterns to set
84
	 *            the filepatterns to set
84
	 */
85
	 */
85
	public void setFilepatterns(List<Object> filepatterns) {
86
	public void setFilepatterns(List<Object> filepatterns) {
86
		this.filepatterns = filepatterns;
87
		this.filepatterns = filepatterns;
Line 92... Line 93...
92
	public List<Object> getContentpatterns() {
93
	public List<Object> getContentpatterns() {
93
		return contentpatterns;
94
		return contentpatterns;
94
	}
95
	}
Line 95... Line 96...
95
 
96
 
-
 
97
	/**
96
	/**
98
	 * @param contentpatterns
97
	 * @param contentpatterns the contentpatterns to set
99
	 *            the contentpatterns to set
98
	 */
100
	 */
99
	public void setContentpatterns(List<Object> contentpatterns) {
101
	public void setContentpatterns(List<Object> contentpatterns) {
100
		this.contentpatterns = contentpatterns;
102
		this.contentpatterns = contentpatterns;