1
2 package org.oasis_open.docs.wsn.br_2;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 import javax.xml.ws.wsaddressing.W3CEndpointReference;
10
11
12 /**
13 * <p>Java class for anonymous complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * <complexType>
19 * <complexContent>
20 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 * <sequence>
22 * <element name="PublisherRegistrationReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType"/>
23 * <element name="ConsumerReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType" minOccurs="0"/>
24 * </sequence>
25 * </restriction>
26 * </complexContent>
27 * </complexType>
28 * </pre>
29 *
30 *
31 */
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34 "publisherRegistrationReference",
35 "consumerReference"
36 })
37 @XmlRootElement(name = "RegisterPublisherResponse")
38 public class RegisterPublisherResponse {
39
40 @XmlElement(name = "PublisherRegistrationReference", required = true)
41 protected W3CEndpointReference publisherRegistrationReference;
42 @XmlElement(name = "ConsumerReference")
43 protected W3CEndpointReference consumerReference;
44
45 /**
46 * Gets the value of the publisherRegistrationReference property.
47 *
48 * @return
49 * possible object is
50 * {@link W3CEndpointReference }
51 *
52 */
53 public W3CEndpointReference getPublisherRegistrationReference() {
54 return publisherRegistrationReference;
55 }
56
57 /**
58 * Sets the value of the publisherRegistrationReference property.
59 *
60 * @param value
61 * allowed object is
62 * {@link W3CEndpointReference }
63 *
64 */
65 public void setPublisherRegistrationReference(W3CEndpointReference value) {
66 this.publisherRegistrationReference = value;
67 }
68
69 /**
70 * Gets the value of the consumerReference property.
71 *
72 * @return
73 * possible object is
74 * {@link W3CEndpointReference }
75 *
76 */
77 public W3CEndpointReference getConsumerReference() {
78 return consumerReference;
79 }
80
81 /**
82 * Sets the value of the consumerReference property.
83 *
84 * @param value
85 * allowed object is
86 * {@link W3CEndpointReference }
87 *
88 */
89 public void setConsumerReference(W3CEndpointReference value) {
90 this.consumerReference = value;
91 }
92
93 }