01: package org.objectweb.celtix.ws.addressing;
02:
03: /**
04: * A container for WS-Addressing constants.
05: */
06: public final class JAXWSAConstants {
07:
08: /**
09: * Well-known Property names for AddressingProperties in BindingProvider
10: * Context.
11: */
12: public static final String CLIENT_ADDRESSING_PROPERTIES = "javax.xml.ws.addressing.context";
13:
14: /**
15: * Well-known Property names for AddressingProperties in Handler
16: * Context.
17: */
18: public static final String CLIENT_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
19: public static final String CLIENT_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
20: public static final String SERVER_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
21: public static final String SERVER_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
22:
23: /**
24: * Used by AddressingBuilder factory method.
25: */
26: public static final String DEFAULT_ADDRESSING_BUILDER = "org.objectweb.celtix.bus.ws.addressing.AddressingBuilderImpl";
27:
28: /**
29: * Prevents instantiation.
30: */
31: private JAXWSAConstants() {
32: }
33: }
|