KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bindings > JAXWSConstants


1 package org.objectweb.celtix.bindings;
2
3 /**
4  * A container for JAXWS constants.
5  */

6 public final class JAXWSConstants {
7     
8     /**
9      * Used to cache data binding callback in context.
10      */

11     public static final String JavaDoc DATABINDING_CALLBACK_PROPERTY =
12         "org.objectweb.celtix.bindings.databinding.callback";
13     
14     /**
15      * Used to cache server binding endpoint callback in context.
16      */

17     public static final String JavaDoc SERVER_BINDING_ENDPOINT_CALLBACK_PROPERTY =
18         "org.objectweb.celtix.bindings.server.endpoint.callback";
19     
20     /**
21      * Used to cache endpoint in context.
22      */

23     public static final String JavaDoc ENDPOINT_PROPERTY =
24         "org.objectweb.celtix.bindings.endpoint";
25     
26     /**
27      * Used to vcache bus in context.
28      */

29     public static final String JavaDoc BUS_PROPERTY =
30         "org.objectweb.celtix.bindings.bus";
31     
32     /**
33      * Used to cache dispatch flag in context.
34      */

35     public static final String JavaDoc DISPATCH_PROPERTY =
36         "org.objectweb.celtix.bindings.dispatch";
37     
38
39     /**
40      * Used by binding to cache itself in the context
41      */

42     public static final String JavaDoc BINDING_PROPERTY =
43         "org.objectweb.celtix.bindings.binding";
44     
45     /**
46      * Used by binding to cache itself in the context
47      */

48     public static final String JavaDoc CLIENT_BINDING_PROPERTY =
49         "org.objectweb.celtix.bindings.client.binding";
50     
51     /**
52      * Used by binding to cache itself in the context
53      */

54     public static final String JavaDoc SERVER_BINDING_PROPERTY =
55         "org.objectweb.celtix.bindings.server.binding";
56     
57     /**
58      * Used by binding to cache Transport in the context
59      */

60     public static final String JavaDoc TRANSPORT_PROPERTY =
61         "org.objectweb.celtix.bindings.transport";
62
63     /**
64      * Used by binding to cache Client Transport in the context
65      */

66     public static final String JavaDoc CLIENT_TRANSPORT_PROPERTY =
67         "org.objectweb.celtix.bindings.client.transport";
68     
69     /**
70      * Used by binding to cache Server Transport in the context
71      */

72     public static final String JavaDoc SERVER_TRANSPORT_PROPERTY =
73         "org.objectweb.celtix.bindings.server.transport";
74     
75     /**
76      * Prevents instantiation.
77      */

78     private JAXWSConstants() {
79     }
80 }
81
Popular Tags