KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.celtix.ws.addressing;
2
3
4 import javax.xml.namespace.QName JavaDoc;
5
6
7 /**
8  * Encapsulation of version-specific WS-Addressing constants.
9  */

10 public interface AddressingConstants {
11     /**
12      * @return namespace defined by the normative WS-Addressing Core schema
13      */

14     String JavaDoc getNamespaceURI();
15     
16     /**
17      * @return prefix associated with the WS-Addressing namespace
18      */

19     String JavaDoc getNamespacePrefix();
20     
21     /**
22      * @return namespace defined by the normative WS-Addressing WSDL bindings
23      * schema
24      */

25     String JavaDoc getWSDLNamespaceURI();
26     
27     /**
28      * @return prefix associated with the WS-Addressing WSDL bindings schema
29      */

30     String JavaDoc getWSDLNamespacePrefix();
31     
32     /**
33      * @return QName of the WSDL extensiblity element
34      */

35     QName JavaDoc getWSDLExtensibilityQName();
36     
37     /**
38      * @return QName of the wsaw:Action element
39      */

40     QName JavaDoc getWSDLActionQName();
41     
42     /**
43      * @return Anonymous address URI
44      */

45     String JavaDoc getAnonymousURI();
46     
47     /**
48      * @return None address URI
49      */

50     String JavaDoc getNoneURI();
51     
52     /**
53      * @return QName of the From addressing header
54      */

55     QName JavaDoc getFromQName();
56     
57     /**
58      * @return QName of the To addressing header
59      */

60     QName JavaDoc getToQName();
61     
62     /**
63      * @return QName of the ReplyTo addressing header
64      */

65     QName JavaDoc getReplyToQName();
66     
67     /**
68      * @return QName of the FaultTo addressing header
69      */

70     QName JavaDoc getFaultToQName();
71     
72     /**
73      * @return QName of the Action addressing header
74      */

75     QName JavaDoc getActionQName();
76     
77     /**
78      * @return QName of the MessageID addressing header
79      */

80     QName JavaDoc getMessageIDQName();
81     
82     /**
83      * @return Default value for RelationshipType indicating a reply
84      * to the related message
85      */

86     String JavaDoc getRelationshipReply();
87     
88     /**
89      * @return QName of the RelatesTo addressing header
90      */

91     QName JavaDoc getRelatesToQName();
92     
93     /**
94      * @return QName of the Relationship addressing header
95      */

96     QName JavaDoc getRelationshipTypeQName();
97
98     /**
99      * @return QName of the Metadata
100      */

101     QName JavaDoc getMetadataQName();
102     
103     /**
104      * @return QName of the Address
105      */

106     QName JavaDoc getAddressQName();
107     
108     /**
109      * @return package name of the implementation
110      */

111     String JavaDoc getPackageName();
112     
113     /**
114      * @return QName of the reference parameter marker
115      */

116     QName JavaDoc getIsReferenceParameterQName();
117     
118     /**
119      * @return QName of the Invalid Message Addressing Property fault subcode
120      */

121     QName JavaDoc getInvalidMapQName();
122     
123     /**
124      * @return QName of the Message Addressing Property Required fault subcode
125      */

126     QName JavaDoc getMapRequiredQName();
127     
128     /**
129      * @return QName of the Destination Unreachable fault subcode
130      */

131     QName JavaDoc getDestinationUnreachableQName();
132     
133     /**
134      * @return QName of the Action Not Supported fault subcode
135      */

136     QName JavaDoc getActionNotSupportedQName();
137     
138     /**
139      * @return QName of the Endpoint Unavailable fault subcode
140      */

141     QName JavaDoc getEndpointUnavailableQName();
142     
143     /**
144      * @return Default Fault Action
145      */

146     String JavaDoc getDefaultFaultAction();
147     
148     /**
149      * @return Action Not Supported text
150      */

151     String JavaDoc getActionNotSupportedText();
152
153     /**
154      * @return Destination Unreachable text
155      */

156     String JavaDoc getDestinationUnreachableText();
157
158     /**
159      * @return Endpoint Unavailable text
160      */

161     String JavaDoc getEndpointUnavailableText();
162
163     /**
164      * @return Invalid Message Addressing Property text
165      */

166     String JavaDoc getInvalidMapText();
167
168     /**
169      * @return Message Addressing Property Required text
170      */

171     String JavaDoc getMapRequiredText();
172
173     /**
174      * @return Duplicate Message ID text
175      */

176     String JavaDoc getDuplicateMessageIDText();
177 }
178
179
Popular Tags