View Javadoc

1   package net.sf.statsvn.input;
2   
3   /**
4    * Class for storing all constants required for reading the cache xml file.
5    *  
6    * @author Gunter Mussbacher <gunterm@site.uottawa.ca>
7    *
8    */
9   public class CacheConfiguration {
10  	protected static final String ADDED = "added";
11  
12  	protected static final String BINARY_STATUS = "binaryStatus";
13  
14  	protected static final String BINARY = "TRUE";
15  
16  	protected static final String CACHE = "cache";
17  
18  	protected static final String LATEST_REVISION = "latestRevision";
19  
20  	protected static final String NAME = "name";
21  
22  	protected static final String NOT_BINARY = "FALSE";
23  
24  	protected static final String NUMBER = "number";
25  
26  	protected static final String PATH = "path";
27  
28  	protected static final String REMOVED = "removed";
29  
30  	protected static final String REVISION = "revision";
31  
32  	protected static final String UNKNOWN = "unknown";
33  
34  	protected static final String PROJECT = "project";
35  
36  	public static final String XML_VERSION = "version";
37  }