CacheConfiguration.java :  » Source-Control » statsvn » net » sf » statsvn » input » Java Open Source

Java Open Source » Source Control » statsvn 
statsvn » net » sf » statsvn » input » CacheConfiguration.java
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";
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.