⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subscriberesponse.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 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> * &lt;element name="SubscribeResponse"> *   &lt;complexType> *     &lt;complexContent> *       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> *         &lt;sequence> *           &lt;element name="SubscriptionReference" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}EndpointReferenceType" minOccurs="0"/> *         &lt;/sequence> *       &lt;/restriction> *     &lt;/complexContent> *   &lt;/complexType> * &lt;/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 + -