package net.sf.statsvn.input;
/**
* Class for storing all constants required for reading the cache xml file.
*
* @author Gunter Mussbacher <gunterm@site.uottawa.ca>
*
*/
public class CacheConfiguration {
protected static final String ADDED = "added";
protected static final String BINARY_STATUS = "binaryStatus";
protected static final String BINARY = "TRUE";
protected static final String CACHE = "cache";
protected static final String LATEST_REVISION = "latestRevision";
protected static final String NAME = "name";
protected static final String NOT_BINARY = "FALSE";
protected static final String NUMBER = "number";
protected static final String PATH = "path";
protected static final String REMOVED = "removed";
protected static final String REVISION = "revision";
protected static final String UNKNOWN = "unknown";
}
|