01: /*
02: * Copyright 1999,2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.apache.catalina.startup;
18:
19: /**
20: * String constants for the startup package.
21: *
22: * @author Craig R. McClanahan
23: * @author Jean-Francois Arcand
24: * @version $Revision: 1.7 $ $Date: 2004/02/27 14:58:48 $
25: */
26:
27: public final class Constants {
28:
29: public static final String Package = "org.apache.catalina.startup";
30:
31: public static final String ApplicationWebXml = "/WEB-INF/web.xml";
32: public static final String DefaultWebXml = "conf/web.xml";
33:
34: public static final String TldDtdPublicId_11 = "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN";
35: public static final String TldDtdResourcePath_11 = "/javax/servlet/jsp/resources/web-jsptaglibrary_1_1.dtd";
36:
37: public static final String TldDtdPublicId_12 = "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN";
38: public static final String TldDtdResourcePath_12 = "/javax/servlet/jsp/resources/web-jsptaglibrary_1_2.dtd";
39:
40: public static final String TldSchemaPublicId_20 = "web-jsptaglibrary_2_0.xsd";;
41: public static final String TldSchemaResourcePath_20 = "/javax/servlet/resources/web-jsptaglibrary_2_0.xsd";
42:
43: public static final String WebDtdPublicId_22 = "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN";
44: public static final String WebDtdResourcePath_22 = "/javax/servlet/resources/web-app_2_2.dtd";
45:
46: public static final String WebDtdPublicId_23 = "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN";
47: public static final String WebDtdResourcePath_23 = "/javax/servlet/resources/web-app_2_3.dtd";
48:
49: public static final String WebSchemaPublicId_24 = "web-app_2_4.xsd";;
50: public static final String WebSchemaResourcePath_24 = "/javax/servlet/resources/web-app_2_4.xsd";
51:
52: public static final String J2eeSchemaPublicId_14 = "j2ee_1_4.xsd";;
53: public static final String J2eeSchemaResourcePath_14 = "/javax/servlet/resources/j2ee_1_4.xsd";
54:
55: public static final String W3cSchemaPublicId_10 = "xml.xsd";;
56: public static final String W3cSchemaResourcePath_10 = "/javax/servlet/resources/xml.xsd";
57:
58: public static final String JspSchemaPublicId_20 = "jsp_2_0.xsd";;
59: public static final String JspSchemaResourcePath_20 = "/javax/servlet/resources/jsp_2_0.xsd";
60:
61: public static final String J2eeWebServiceSchemaPublicId_11 = "j2ee_web_services_1_1.xsd";
62: public static final String J2eeWebServiceSchemaResourcePath_11 = "/javax/servlet/resources/j2ee_web_services_1_1.xsd";
63:
64: public static final String J2eeWebServiceClientSchemaPublicId_11 = "j2ee_web_services_client_1_1.xsd";
65: public static final String J2eeWebServiceClientSchemaResourcePath_11 = "/javax/servlet/resources/j2ee_web_services_client_1_1.xsd";
66:
67: }
|