package org.cagrid.cds.types; import java.io.Serializable; 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._2004._03.addressing.EndpointReferenceType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://schemas.xmlsoap.org/ws/2004/03/addressing}EndpointReference"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "endpointReference" }) @XmlRootElement(name = "CredentialDelegationServiceReference") public class CredentialDelegationServiceReference implements Serializable { @XmlElement(name = "EndpointReference", namespace = "http://schemas.xmlsoap.org/ws/2004/03/addressing", required = true) protected EndpointReferenceType endpointReference; /** * Gets the value of the endpointReference property. * * @return * possible object is * {@link org.xmlsoap.schemas.ws._2004._03.addressing.EndpointReferenceType } * */ public EndpointReferenceType getEndpointReference() { return endpointReference; } /** * Sets the value of the endpointReference property. * * @param value * allowed object is * {@link org.xmlsoap.schemas.ws._2004._03.addressing.EndpointReferenceType } * */ public void setEndpointReference(EndpointReferenceType value) { this.endpointReference = value; } }