package eu.aniketos.ncvm.marketplace.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 X500Principal complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="X500Principal"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="encoded" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "X500Principal", namespace = "http://x500.auth.security.javax", propOrder = { "encoded", "name" }) public class X500Principal { @XmlElementRef(name = "encoded", namespace = "http://x500.auth.security.javax", type = JAXBElement.class) protected JAXBElement<byte[]> encoded; @XmlElementRef(name = "name", namespace = "http://x500.auth.security.javax", type = JAXBElement.class) protected JAXBElement<String> name; /** * Gets the value of the encoded property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public JAXBElement<byte[]> getEncoded() { return encoded; } /** * Sets the value of the encoded property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public void setEncoded(JAXBElement<byte[]> value) { this.encoded = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> 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<String> value) { this.name = value; } }