001
002 package org.oasis_open.docs.wsn.br_2;
003
004 import javax.xml.bind.annotation.XmlAccessType;
005 import javax.xml.bind.annotation.XmlAccessorType;
006 import javax.xml.bind.annotation.XmlElement;
007 import javax.xml.bind.annotation.XmlRootElement;
008 import javax.xml.bind.annotation.XmlType;
009 import javax.xml.ws.wsaddressing.W3CEndpointReference;
010
011
012 /**
013 * <p>Java class for anonymous complex type.
014 *
015 * <p>The following schema fragment specifies the expected content contained within this class.
016 *
017 * <pre>
018 * <complexType>
019 * <complexContent>
020 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
021 * <sequence>
022 * <element name="PublisherRegistrationReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType"/>
023 * <element name="ConsumerReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType" minOccurs="0"/>
024 * </sequence>
025 * </restriction>
026 * </complexContent>
027 * </complexType>
028 * </pre>
029 *
030 *
031 */
032 @XmlAccessorType(XmlAccessType.FIELD)
033 @XmlType(name = "", propOrder = {
034 "publisherRegistrationReference",
035 "consumerReference"
036 })
037 @XmlRootElement(name = "RegisterPublisherResponse")
038 public class RegisterPublisherResponse {
039
040 @XmlElement(name = "PublisherRegistrationReference", required = true)
041 protected W3CEndpointReference publisherRegistrationReference;
042 @XmlElement(name = "ConsumerReference")
043 protected W3CEndpointReference consumerReference;
044
045 /**
046 * Gets the value of the publisherRegistrationReference property.
047 *
048 * @return
049 * possible object is
050 * {@link W3CEndpointReference }
051 *
052 */
053 public W3CEndpointReference getPublisherRegistrationReference() {
054 return publisherRegistrationReference;
055 }
056
057 /**
058 * Sets the value of the publisherRegistrationReference property.
059 *
060 * @param value
061 * allowed object is
062 * {@link W3CEndpointReference }
063 *
064 */
065 public void setPublisherRegistrationReference(W3CEndpointReference value) {
066 this.publisherRegistrationReference = value;
067 }
068
069 /**
070 * Gets the value of the consumerReference property.
071 *
072 * @return
073 * possible object is
074 * {@link W3CEndpointReference }
075 *
076 */
077 public W3CEndpointReference getConsumerReference() {
078 return consumerReference;
079 }
080
081 /**
082 * Sets the value of the consumerReference property.
083 *
084 * @param value
085 * allowed object is
086 * {@link W3CEndpointReference }
087 *
088 */
089 public void setConsumerReference(W3CEndpointReference value) {
090 this.consumerReference = value;
091 }
092
093 }