| Constants.java |
/*
PCS - A Framework For Java Web Applications
Copyright (C) 2002 Patrick Carl, patrick.carl@web.de
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id: Constants.java,v 1.2 2003/01/19 23:41:36 pcs_org Exp $
*/
package de.spieleck.pcs;
/**
* Interface for holding constants
* @author Patrick Carl
*/
public interface Constants {
/**
* key used for the HttpRequest path
*/
public static final String REQUEST_PATH_PARAM =
"pcstoolkit.pcsfw.request.path";
/**
* used as parameter name for the parameter containing the name of
* the used Service
*/
public static final String REQUEST_SERVICE_NAME_PARAM =
"pcstoolkit.pcsfw.request.service_name";
public static final String CONTOLLER_XML_CONFIG_PARAM =
"pcstoolkit.pcsfw.controller.config";
public static final String CONTROLLER_SESSION_EXCEPTION_PARAM_NAME =
"pcstoolkit.pcsfw.controller.exception";
public static final String EXCEPTION_SERVICE_NAME =
"pcstoolkit.pcsfw.services.exception";
public static final String SESSION_AS_PARAMETER_NAME =
"pcstoolkit.pcsfw.controller.session";
public static final String ACTION_RESULT_XSL_FILE =
"pcstoolkit.pcsfw.action_result.xsl_file";
public static final String CONTEXT_REAL_PATH =
"pcstoolkit.pcsfw.context.real_path";
}
| Constants.java |