no.difi.xsd.asic.model._1.Certificate Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.04.07 at 02:26:28 PM CEST
//
package no.difi.xsd.asic.model._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for certificate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="certificate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="subject" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* <attribute name="cert" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "certificate", propOrder = {
"subject",
"certificate"
})
public class Certificate {
@XmlElement(required = true)
protected String subject;
@XmlElement(required = true)
protected byte[] certificate;
@XmlAttribute(name = "cert")
protected String cert;
/**
* Gets the value of the subject property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubject() {
return subject;
}
/**
* Sets the value of the subject property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubject(String value) {
this.subject = value;
}
/**
* Gets the value of the certificate property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getCertificate() {
return certificate;
}
/**
* Sets the value of the certificate property.
*
* @param value
* allowed object is
* byte[]
*/
public void setCertificate(byte[] value) {
this.certificate = value;
}
/**
* Gets the value of the cert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCert() {
return cert;
}
/**
* Sets the value of the cert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCert(String value) {
this.cert = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy