package net.brutex.sbm.wsclient; 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; /** *

Java class for Privilege complex type. * *

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

 * <complexType name="Privilege">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="objectUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Privilege", propOrder = { "name", "objectUUID", "type" }) public class Privilege { @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; @XmlElementRef(name = "objectUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement objectUUID; @XmlElementRef(name = "type", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement type; /** * Gets the value of the name property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setName(JAXBElement value) { this.name = ((JAXBElement ) value); } /** * Gets the value of the objectUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getObjectUUID() { return objectUUID; } /** * Sets the value of the objectUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setObjectUUID(JAXBElement value) { this.objectUUID = ((JAXBElement ) value); } /** * Gets the value of the type property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setType(JAXBElement value) { this.type = ((JAXBElement ) value); } }