All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.ws.addressing.v200408.EndpointReferenceType Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.06.04 at 01:43:22 PM EDT 
//


package org.apache.cxf.ws.addressing.v200408;

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;


/**
 * 

Java class for EndpointReferenceType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EndpointReferenceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Address" type="{http://schemas.xmlsoap.org/ws/2004/08/addressing}AttributedURI"/>
 *         <element name="ReferenceProperties" type="{http://schemas.xmlsoap.org/ws/2004/08/addressing}ReferencePropertiesType" minOccurs="0"/>
 *         <element name="ReferenceParameters" type="{http://schemas.xmlsoap.org/ws/2004/08/addressing}ReferenceParametersType" minOccurs="0"/>
 *         <element name="PortType" type="{http://schemas.xmlsoap.org/ws/2004/08/addressing}AttributedQName" minOccurs="0"/>
 *         <element name="ServiceName" type="{http://schemas.xmlsoap.org/ws/2004/08/addressing}ServiceNameType" minOccurs="0"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EndpointReferenceType", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", propOrder = { "address", "referenceProperties", "referenceParameters", "portType", "serviceName", "any" }) public class EndpointReferenceType { @XmlElement(name = "Address", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", required = true) protected AttributedURI address = new AttributedURI(); @XmlElement(name = "ReferenceProperties", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing") protected ReferencePropertiesType referenceProperties; @XmlElement(name = "ReferenceParameters", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing") protected ReferenceParametersType referenceParameters; @XmlElement(name = "PortType", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing") protected AttributedQName portType; @XmlElement(name = "ServiceName", namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing") protected ServiceNameType serviceName; /** * If "Policy" elements from namespace "http://schemas.xmlsoap.org/ws/2002/12/policy#policy" are used, they must appear first (before any extensibility elements). * */ @XmlAnyElement(lax = true) protected List any; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * 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 referenceParameters property. * * @return * possible object is * {@link ReferenceParametersType } * */ public ReferenceParametersType getReferenceParameters() { return referenceParameters; } /** * Sets the value of the referenceParameters property. * * @param value * allowed object is * {@link ReferenceParametersType } * */ public void setReferenceParameters(ReferenceParametersType value) { this.referenceParameters = 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. * *

* 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 set method for the any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * *

* If "Policy" elements from namespace "http://schemas.xmlsoap.org/ws/2002/12/policy#policy" are used, they must appear first (before any extensibility elements). * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* 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 getOtherAttributes() { return otherAttributes; } }