KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > om > OMConstants


1 /*
2  * Copyright 2004,2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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 package org.apache.axis2.om;
17
18 /**
19  * Interface OMConstants
20  */

21 public interface OMConstants {
22
23        
24     // OMBuilder constants
25
/**
26      * Field PUSH_TYPE_BUILDER
27      */

28     public static final short PUSH_TYPE_BUILDER = 0;
29
30     /**
31      * Field PULL_TYPE_BUILDER
32      */

33     public static final short PULL_TYPE_BUILDER = 1;
34
35     /**
36      * Field ARRAY_ITEM_NSURI
37      */

38     public static final String JavaDoc ARRAY_ITEM_NSURI =
39             "http://axis.apache.org/encoding/Arrays";
40
41     /**
42      * Field ARRAY_ITEM_LOCALNAME
43      */

44     public static final String JavaDoc ARRAY_ITEM_LOCALNAME = "item";
45
46     /**
47      * Field ARRAY_ITEM_NS_PREFIX
48      */

49     public static final String JavaDoc ARRAY_ITEM_NS_PREFIX = "arrays";
50
51     /**
52      * Field ARRAY_ITEM_QNAME
53      */

54     public static final String JavaDoc ARRAY_ITEM_QNAME =
55             OMConstants.ARRAY_ITEM_NS_PREFIX + ':'
56                     + OMConstants.ARRAY_ITEM_LOCALNAME;
57 }
58
Popular Tags