📄 subscriberesponse.java
字号:
package org.oasis_open.docs.wsn._2004._06.wsn_ws_basenotification_1_2_draft_01;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlType;import org.xmlsoap.schemas.ws._2003._03.addressing.EndpointReferenceType;/** * <p>Java class for SubscribeResponse element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <element name="SubscribeResponse"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SubscriptionReference" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}EndpointReferenceType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </pre> * * */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = { "subscriptionReference"})@XmlRootElement(name = "SubscribeResponse")public class SubscribeResponse { @XmlElement(name = "SubscriptionReference", namespace = "http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd") protected EndpointReferenceType subscriptionReference; /** * Gets the value of the subscriptionReference property. * * @return * possible object is * {@link EndpointReferenceType } * */ public EndpointReferenceType getSubscriptionReference() { return subscriptionReference; } /** * Sets the value of the subscriptionReference property. * * @param value * allowed object is * {@link EndpointReferenceType } * */ public void setSubscriptionReference(EndpointReferenceType value) { this.subscriptionReference = value; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -