// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.08.26 at 02:35:27 PM CEST // package eu.europa.esig.jaxb.tsl; 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.XmlType; import eu.europa.esig.jaxb.xmldsig.KeyValueType; /** * <p>Java class for DigitalIdentityType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DigitalIdentityType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> * <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyValue"/> * <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> * <element name="Other" type="{http://uri.etsi.org/02231/v2#}AnyType" minOccurs="0"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DigitalIdentityType", propOrder = { "x509Certificate", "x509SubjectName", "keyValue", "x509SKI", "other" }) public class DigitalIdentityType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "X509Certificate") protected byte[] x509Certificate; @XmlElement(name = "X509SubjectName") protected String x509SubjectName; @XmlElement(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#") protected KeyValueType keyValue; @XmlElement(name = "X509SKI") protected byte[] x509SKI; @XmlElement(name = "Other") protected AnyType other; /** * Gets the value of the x509Certificate property. * * @return * possible object is * byte[] */ public byte[] getX509Certificate() { return x509Certificate; } /** * Sets the value of the x509Certificate property. * * @param value * allowed object is * byte[] */ public void setX509Certificate(byte[] value) { this.x509Certificate = value; } /** * Gets the value of the x509SubjectName property. * * @return * possible object is * {@link String } * */ public String getX509SubjectName() { return x509SubjectName; } /** * Sets the value of the x509SubjectName property. * * @param value * allowed object is * {@link String } * */ public void setX509SubjectName(String value) { this.x509SubjectName = value; } /** * Gets the value of the keyValue property. * * @return * possible object is * {@link KeyValueType } * */ public KeyValueType getKeyValue() { return keyValue; } /** * Sets the value of the keyValue property. * * @param value * allowed object is * {@link KeyValueType } * */ public void setKeyValue(KeyValueType value) { this.keyValue = value; } /** * Gets the value of the x509SKI property. * * @return * possible object is * byte[] */ public byte[] getX509SKI() { return x509SKI; } /** * Sets the value of the x509SKI property. * * @param value * allowed object is * byte[] */ public void setX509SKI(byte[] value) { this.x509SKI = value; } /** * Gets the value of the other property. * * @return * possible object is * {@link AnyType } * */ public AnyType getOther() { return other; } /** * Sets the value of the other property. * * @param value * allowed object is * {@link AnyType } * */ public void setOther(AnyType value) { this.other = value; } }