01: package org.objectweb.celtix.bindings;
02:
03: /**
04: * A container for JAXWS constants.
05: */
06: public final class JAXWSConstants {
07:
08: /**
09: * Used to cache data binding callback in context.
10: */
11: public static final String DATABINDING_CALLBACK_PROPERTY = "org.objectweb.celtix.bindings.databinding.callback";
12:
13: /**
14: * Used to cache server binding endpoint callback in context.
15: */
16: public static final String SERVER_BINDING_ENDPOINT_CALLBACK_PROPERTY = "org.objectweb.celtix.bindings.server.endpoint.callback";
17:
18: /**
19: * Used to cache endpoint in context.
20: */
21: public static final String ENDPOINT_PROPERTY = "org.objectweb.celtix.bindings.endpoint";
22:
23: /**
24: * Used to vcache bus in context.
25: */
26: public static final String BUS_PROPERTY = "org.objectweb.celtix.bindings.bus";
27:
28: /**
29: * Used to cache dispatch flag in context.
30: */
31: public static final String DISPATCH_PROPERTY = "org.objectweb.celtix.bindings.dispatch";
32:
33: /**
34: * Used by binding to cache itself in the context
35: */
36: public static final String BINDING_PROPERTY = "org.objectweb.celtix.bindings.binding";
37:
38: /**
39: * Used by binding to cache itself in the context
40: */
41: public static final String CLIENT_BINDING_PROPERTY = "org.objectweb.celtix.bindings.client.binding";
42:
43: /**
44: * Used by binding to cache itself in the context
45: */
46: public static final String SERVER_BINDING_PROPERTY = "org.objectweb.celtix.bindings.server.binding";
47:
48: /**
49: * Used by binding to cache Transport in the context
50: */
51: public static final String TRANSPORT_PROPERTY = "org.objectweb.celtix.bindings.transport";
52:
53: /**
54: * Used by binding to cache Client Transport in the context
55: */
56: public static final String CLIENT_TRANSPORT_PROPERTY = "org.objectweb.celtix.bindings.client.transport";
57:
58: /**
59: * Used by binding to cache Server Transport in the context
60: */
61: public static final String SERVER_TRANSPORT_PROPERTY = "org.objectweb.celtix.bindings.server.transport";
62:
63: /**
64: * Prevents instantiation.
65: */
66: private JAXWSConstants() {
67: }
68: }
|