package org.cagrid.cds.wsrf.stubs; 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 gov.nih.nci.cagrid.metadata.ServiceMetadata; /** * <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="{gme://caGrid.caBIG/1.0/gov.nih.nci.cagrid.metadata}ServiceMetadata"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "serviceMetadata" }) @XmlRootElement(name = "CredentialDelegationServiceResourceProperties") public class CredentialDelegationServiceResourceProperties implements Serializable { @XmlElement(name = "ServiceMetadata", namespace = "gme://caGrid.caBIG/1.0/gov.nih.nci.cagrid.metadata", required = true) protected ServiceMetadata serviceMetadata; /** * Gets the value of the serviceMetadata property. * * @return * possible object is * {@link gov.nih.nci.cagrid.metadata.ServiceMetadata } * */ public ServiceMetadata getServiceMetadata() { return serviceMetadata; } /** * Sets the value of the serviceMetadata property. * * @param value * allowed object is * {@link gov.nih.nci.cagrid.metadata.ServiceMetadata } * */ public void setServiceMetadata(ServiceMetadata value) { this.serviceMetadata = value; } }