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     * &lt;complexType>
019     *   &lt;complexContent>
020     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
021     *       &lt;sequence>
022     *         &lt;element name="PublisherRegistrationReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType"/>
023     *         &lt;element name="ConsumerReference" type="{http://www.w3.org/2005/08/addressing}EndpointReferenceType" minOccurs="0"/>
024     *       &lt;/sequence>
025     *     &lt;/restriction>
026     *   &lt;/complexContent>
027     * &lt;/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    }