KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.celtix.ws.addressing;
2
3
4 /**
5  * Abstraction of Message Addressing Properties.
6  */

7 public interface AddressingProperties extends AddressingType {
8     /**
9      * Accessor for the <b>To</b> property.
10      * @return current value of To property
11      */

12     AttributedURIType getTo();
13
14     /**
15      * Mutator for the <b>To</b> property.
16      * @param iri new value for To property
17      */

18     void setTo(AttributedURIType iri);
19
20     /**
21      * Accessor for the <b>MessageID</b> property.
22      * @return current value of MessageID property
23      */

24     AttributedURIType getMessageID();
25
26     /**
27      * Mutator for the <b>MessageID</b> property.
28      * @param iri new value for MessageID property
29      */

30     void setMessageID(AttributedURIType iri);
31
32     /**
33      * Accessor for the <b>ReplyTo</b> property.
34      * @return current value of ReplyTo property
35      */

36     EndpointReferenceType getReplyTo();
37
38     /**
39      * Mutator for the <b>ReplyTo</b> property.
40      * @param ref new value for ReplyTo property
41      */

42     void setReplyTo(EndpointReferenceType ref);
43     
44     /**
45      * Accessor for the <b>FaultTo</b> property.
46      * @return current value of FaultTo property
47      */

48     EndpointReferenceType getFaultTo();
49
50     /**
51      * Mutator for the <b>FaultTo</b> property.
52      * @param ref new value for FaultTo property
53      */

54     void setFaultTo(EndpointReferenceType ref);
55
56
57     /**
58      * Accessor for the <b>RelatesTo</b> property.
59      * @return current value of RelatesTo property
60      */

61     RelatesToType getRelatesTo();
62
63     /**
64      * Mutator for the <b>RelatesTo</b> property.
65      * @param relatesTo new value for RelatesTo property
66      */

67     void setRelatesTo(RelatesToType relatesTo);
68     
69     /**
70      * Accessor for the <b>Action</b> property.
71      * @return current value of Action property
72      */

73     AttributedURIType getAction();
74
75     /**
76      * Mutator for the <b>Action</b> property.
77      * @param iri new value for Action property
78      */

79     void setAction(AttributedURIType iri);
80 }
81
Popular Tags