package eu.aniketos.ncvm.spdm.client; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for IWebService complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IWebService"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="serviceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IWebService", namespace = "http://api.ds.spdm.aniketos.eu", propOrder = { "serviceID" }) public class IWebService { @XmlElementRef(name = "serviceID", namespace = "http://api.ds.spdm.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> serviceID; /** * Gets the value of the serviceID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getServiceID() { return serviceID; } /** * Sets the value of the serviceID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setServiceID(JAXBElement<String> value) { this.serviceID = value; } }