/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.purl.sword.client;

/**
 * Hold general constants for the client. 
 * 
 * @author Neil Taylor
 */
public class ClientConstants
{
   /** 
    * Current software version. 
    */
   public static final String CLIENT_VERSION = "1.1";

   /**
    * the name of this application
    */
   public static final String SERVICE_NAME = "CASIS Test Client";

   /**
    * the name of this application
    */
   public static final String NOT_DEFINED_TEXT = "Not defined";

   /**
    * The logging property file. 
    */
   public static final String LOGGING_PROPERTY_FILE = "log4j.properties";
}
