KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > ws > addressing > JAXWSAConstants


1 package org.objectweb.celtix.ws.addressing;
2
3
4 /**
5  * A container for WS-Addressing constants.
6  */

7 public final class JAXWSAConstants {
8
9     /**
10      * Well-known Property names for AddressingProperties in BindingProvider
11      * Context.
12      */

13     public static final String JavaDoc CLIENT_ADDRESSING_PROPERTIES =
14         "javax.xml.ws.addressing.context";
15     
16     /**
17      * Well-known Property names for AddressingProperties in Handler
18      * Context.
19      */

20     public static final String JavaDoc CLIENT_ADDRESSING_PROPERTIES_INBOUND =
21         "javax.xml.ws.addressing.context.inbound";
22     public static final String JavaDoc CLIENT_ADDRESSING_PROPERTIES_OUTBOUND =
23         "javax.xml.ws.addressing.context.outbound";
24     public static final String JavaDoc SERVER_ADDRESSING_PROPERTIES_INBOUND =
25         "javax.xml.ws.addressing.context.inbound";
26     public static final String JavaDoc SERVER_ADDRESSING_PROPERTIES_OUTBOUND =
27         "javax.xml.ws.addressing.context.outbound";
28     
29     /**
30      * Used by AddressingBuilder factory method.
31      */

32     public static final String JavaDoc DEFAULT_ADDRESSING_BUILDER =
33         "org.objectweb.celtix.bus.ws.addressing.AddressingBuilderImpl";
34
35     /**
36      * Prevents instantiation.
37      */

38     private JAXWSAConstants() {
39     }
40 }
41
Popular Tags