KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > catalina > startup > Constants


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * 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
19 package org.apache.catalina.startup;
20
21
22 /**
23  * String constants for the startup package.
24  *
25  * @author Craig R. McClanahan
26  * @author Jean-Francois Arcand
27  * @version $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $
28  */

29
30 public final class Constants {
31
32     public static final String JavaDoc Package = "org.apache.catalina.startup";
33
34     public static final String JavaDoc ApplicationContextXml = "META-INF/context.xml";
35     public static final String JavaDoc ApplicationWebXml = "/WEB-INF/web.xml";
36     public static final String JavaDoc DefaultContextXml = "conf/context.xml";
37     public static final String JavaDoc DefaultWebXml = "conf/web.xml";
38     public static final String JavaDoc HostContextXml = "context.xml.default";
39     public static final String JavaDoc HostWebXml = "web.xml.default";
40
41     public static final String JavaDoc TldDtdPublicId_11 =
42         "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN";
43     public static final String JavaDoc TldDtdResourcePath_11 =
44         "/javax/servlet/jsp/resources/web-jsptaglibrary_1_1.dtd";
45
46     public static final String JavaDoc TldDtdPublicId_12 =
47         "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN";
48     public static final String JavaDoc TldDtdResourcePath_12 =
49         "/javax/servlet/jsp/resources/web-jsptaglibrary_1_2.dtd";
50
51     public static final String JavaDoc TldSchemaPublicId_20 =
52         "web-jsptaglibrary_2_0.xsd";;
53     public static final String JavaDoc TldSchemaResourcePath_20 =
54         "/javax/servlet/jsp/resources/web-jsptaglibrary_2_0.xsd";
55
56     public static final String JavaDoc WebDtdPublicId_22 =
57         "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN";
58     public static final String JavaDoc WebDtdResourcePath_22 =
59         "/javax/servlet/resources/web-app_2_2.dtd";
60
61     public static final String JavaDoc WebDtdPublicId_23 =
62         "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN";
63     public static final String JavaDoc WebDtdResourcePath_23 =
64         "/javax/servlet/resources/web-app_2_3.dtd";
65
66     public static final String JavaDoc WebSchemaPublicId_24 =
67         "web-app_2_4.xsd";;
68     public static final String JavaDoc WebSchemaResourcePath_24 =
69         "/javax/servlet/resources/web-app_2_4.xsd";
70
71     public static final String JavaDoc J2eeSchemaPublicId_14 =
72         "j2ee_1_4.xsd";;
73     public static final String JavaDoc J2eeSchemaResourcePath_14 =
74         "/javax/servlet/resources/j2ee_1_4.xsd";
75
76     public static final String JavaDoc W3cSchemaPublicId_10 =
77         "xml.xsd";;
78     public static final String JavaDoc W3cSchemaResourcePath_10 =
79         "/javax/servlet/resources/xml.xsd";
80
81     public static final String JavaDoc JspSchemaPublicId_20 =
82         "jsp_2_0.xsd";;
83     public static final String JavaDoc JspSchemaResourcePath_20 =
84         "/javax/servlet/jsp/resources/jsp_2_0.xsd";
85     
86     public static final String JavaDoc J2eeWebServiceSchemaPublicId_11 =
87             "j2ee_web_services_1_1.xsd";
88     public static final String JavaDoc J2eeWebServiceSchemaResourcePath_11 =
89             "/javax/servlet/resources/j2ee_web_services_1_1.xsd";
90     
91     public static final String JavaDoc J2eeWebServiceClientSchemaPublicId_11 =
92             "j2ee_web_services_client_1_1.xsd";
93     public static final String JavaDoc J2eeWebServiceClientSchemaResourcePath_11 =
94             "/javax/servlet/resources/j2ee_web_services_client_1_1.xsd";
95
96 }
97
Popular Tags