KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > soap > impl > llom > SOAPConstants


1 package org.apache.axis2.soap.impl.llom;
2
3 /**
4  * Copyright 2001-2004 The Apache Software Foundation.
5  * <p/>
6  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
7  * use this file except in compliance with the License. You may obtain a copy of
8  * the License at
9  * <p/>
10  * http://www.apache.org/licenses/LICENSE-2.0
11  * <p/>
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations under
16  * the License.
17  * <p/>
18  */

19 public interface SOAPConstants {
20     /**
21      * Eran Chinthaka (chinthaka@apache.org)
22      */

23     /**
24      * Field SOAP_DEFAULT_NAMESPACE_PREFIX
25      */

26     public static final String JavaDoc SOAP_DEFAULT_NAMESPACE_PREFIX = "soapenv";
27     /**
28      * Field SOAPENVELOPE_LOCAL_NAME
29      */

30     public static final String JavaDoc SOAPENVELOPE_LOCAL_NAME = "Envelope";
31
32     /**
33      * Field HEADER_LOCAL_NAME
34      */

35     public static final String JavaDoc HEADER_LOCAL_NAME = "Header";
36
37     /**
38      * Field BODY_LOCAL_NAME
39      */

40     public static final String JavaDoc BODY_LOCAL_NAME = "Body";
41     /**
42      * Field BODY_NAMESPACE_PREFIX
43      */

44     public static final String JavaDoc BODY_NAMESPACE_PREFIX =
45             SOAP_DEFAULT_NAMESPACE_PREFIX;
46     /**
47      * Field BODY_FAULT_LOCAL_NAME
48      */

49     public static final String JavaDoc BODY_FAULT_LOCAL_NAME = "Fault";
50
51     /**
52      * Field ATTR_MUSTUNDERSTAND
53      */

54     public static final String JavaDoc ATTR_MUSTUNDERSTAND = "mustUnderstand";
55     public static final String JavaDoc ATTR_MUSTUNDERSTAND_TRUE = "true";
56     public static final String JavaDoc ATTR_MUSTUNDERSTAND_FALSE = "false";
57     public static final String JavaDoc ATTR_MUSTUNDERSTAND_0 = "0";
58     public static final String JavaDoc ATTR_MUSTUNDERSTAND_1 = "1";
59     /**
60      * Field SOAPFAULT_LOCAL_NAME
61      */

62     public static final String JavaDoc SOAPFAULT_LOCAL_NAME = "Fault";
63     /**
64      * Field SOAPFAULT_DETAIL_LOCAL_NAME
65      */

66     public static final String JavaDoc SOAPFAULT_DETAIL_LOCAL_NAME = "detail";
67     
68     /**
69      * Field SOAPFAULT_NAMESPACE_PREFIX
70      */

71     public static final String JavaDoc SOAPFAULT_NAMESPACE_PREFIX =
72             SOAP_DEFAULT_NAMESPACE_PREFIX;
73
74     public static final String JavaDoc SOAP_FAULT_DETAIL_EXCEPTION_ENTRY = "Exception";
75 }
76
Popular Tags