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