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

📄 endpointreferencetype.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.xmlsoap.schemas.ws._2003._03.addressing;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlAnyAttribute;import javax.xml.bind.annotation.XmlAnyElement;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlType;import javax.xml.namespace.QName;import org.w3c.dom.Element;/** * <p>Java class for EndpointReferenceType complex type. *  * <p>The following schema fragment specifies the expected content contained within this class. *  * <pre> * &lt;complexType name="EndpointReferenceType"> *   &lt;complexContent> *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> *       &lt;sequence> *         &lt;element name="Address" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}AttributedURI"/> *         &lt;element name="ReferenceProperties" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}ReferencePropertiesType" minOccurs="0"/> *         &lt;element name="PortType" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}AttributedQName" minOccurs="0"/> *         &lt;element name="ServiceName" type="{http://schemas.xmlsoap.org/ws/2003/03/addressing}ServiceNameType" minOccurs="0"/> *         &lt;any/> *       &lt;/sequence> *     &lt;/restriction> *   &lt;/complexContent> * &lt;/complexType> * </pre> *  *  */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "EndpointReferenceType")public class EndpointReferenceType {    @XmlElement(name = "Address", namespace = "http://schemas.xmlsoap.org/ws/2003/03/addressing")    protected AttributedURI address;    @XmlElement(name = "ReferenceProperties", namespace = "http://schemas.xmlsoap.org/ws/2003/03/addressing")    protected ReferencePropertiesType referenceProperties;    @XmlElement(name = "PortType", namespace = "http://schemas.xmlsoap.org/ws/2003/03/addressing")    protected AttributedQName portType;    @XmlElement(name = "ServiceName", namespace = "http://schemas.xmlsoap.org/ws/2003/03/addressing")    protected ServiceNameType serviceName;    @XmlAnyElement(lax = true)    protected List<Object> any;    @XmlAnyAttribute    private Map<QName, String> otherAttributes = new HashMap<QName, String>();    /**     * Gets the value of the address property.     *      * @return     *     possible object is     *     {@link AttributedURI }     *          */    public AttributedURI getAddress() {        return address;    }    /**     * Sets the value of the address property.     *      * @param value     *     allowed object is     *     {@link AttributedURI }     *          */    public void setAddress(AttributedURI value) {        this.address = value;    }    /**     * Gets the value of the referenceProperties property.     *      * @return     *     possible object is     *     {@link ReferencePropertiesType }     *          */    public ReferencePropertiesType getReferenceProperties() {        return referenceProperties;    }    /**     * Sets the value of the referenceProperties property.     *      * @param value     *     allowed object is     *     {@link ReferencePropertiesType }     *          */    public void setReferenceProperties(ReferencePropertiesType value) {        this.referenceProperties = value;    }    /**     * Gets the value of the portType property.     *      * @return     *     possible object is     *     {@link AttributedQName }     *          */    public AttributedQName getPortType() {        return portType;    }    /**     * Sets the value of the portType property.     *      * @param value     *     allowed object is     *     {@link AttributedQName }     *          */    public void setPortType(AttributedQName value) {        this.portType = value;    }    /**     * Gets the value of the serviceName property.     *      * @return     *     possible object is     *     {@link ServiceNameType }     *          */    public ServiceNameType getServiceName() {        return serviceName;    }    /**     * Sets the value of the serviceName property.     *      * @param value     *     allowed object is     *     {@link ServiceNameType }     *          */    public void setServiceName(ServiceNameType value) {        this.serviceName = value;    }    /**     * Gets the value of the any property.     *      * <p>     * This accessor method returns a reference to the live list,     * not a snapshot. Therefore any modification you make to the     * returned list will be present inside the JAXB object.     * This is why there is not a <CODE>set</CODE> method for the any property.     *      * <p>     * For example, to add a new item, do as follows:     * <pre>     *    getAny().add(newItem);     * </pre>     *      *      * <p>     * Objects of the following type(s) are allowed in the list     * {@link Element }     * {@link Object }     *      *      */    public List<Object> getAny() {        if (any == null) {            any = new ArrayList<Object>();        }        return this.any;    }    /**     * Gets a map that contains attributes that aren't bound to any typed property on this class.     *      * <p>     * the map is keyed by the name of the attribute and      * the value is the string value of the attribute.     *      * the map returned by this method is live, and you can add new attribute     * by updating the map directly. Because of this design, there's no setter.     *      *      * @return     *     always non-null     */    public Map<QName, String> getOtherAttributes() {        return otherAttributes;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -