View Javadoc

1   /**********************************************************************
2    * EJOEBindingConstants.java
3    * created on 12.07.2006 by netseeker
4    * $Source$
5    * $Date$
6    * $Revision$
7    *
8    * ====================================================================
9    *
10   *  Copyright 2006 netseeker aka Michael Manske
11   *
12   *  Licensed under the Apache License, Version 2.0 (the "License");
13   *  you may not use this file except in compliance with the License.
14   *  You may obtain a copy of the License at
15   *
16   *      http://www.apache.org/licenses/LICENSE-2.0
17   *
18   *  Unless required by applicable law or agreed to in writing, software
19   *  distributed under the License is distributed on an "AS IS" BASIS,
20   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21   *  See the License for the specific language governing permissions and
22   *  limitations under the License.
23   * ====================================================================
24   *
25   * This file is part of the de.netseeker.ejoe.ext.wsif.wsdl framework.
26   * For more information on the author, please see
27   * <http://www.manskes.de/>.
28   *
29   *********************************************************************/
30  
31  package de.netseeker.ejoe.ext.wsif.wsdl;
32  
33  import javax.xml.namespace.QName;
34  
35  import com.ibm.wsdl.Constants;
36  
37  /***
38   * @author netseeker
39   * @since 0.3.9.1
40   */
41  public class EJOEBindingConstants
42  {
43      // Namespace URIs.
44      public static final String NS_URI_EJOE           = "http://schemas.xmlsoap.org/wsdl/ejoe/";
45  
46      // Element names.
47      public static final String ELEM_ADDRESS          = "address";
48  
49      public static final String ELEM_URL              = "ejoeServerURL";
50  
51      public static final String ELEM_INVOCATION_TYPE  = "invocationType";
52  
53      public static final String ELEM_ADAPTOR_CLASS    = "adapterClass";
54  
55      public static final String ELEM_PERSISTENT       = "usePersistentConnection";
56  
57      public static final String ELEM_COMPRESSION      = "useCompression";
58  
59      // Qualified element names.
60      public static final QName  Q_ELEM_EJOE_BINDING   = new QName( NS_URI_EJOE, Constants.ELEM_BINDING );
61  
62      public static final QName  Q_ELEM_EJOE_OPERATION = new QName( NS_URI_EJOE, Constants.ELEM_OPERATION );
63  
64      public static final QName  Q_ELEM_EJOE_ADDRESS   = new QName( NS_URI_EJOE, ELEM_ADDRESS );
65  }