no.difi.certvalidator.jaxb.ValidatorRecipe Maven / Gradle / Ivy
Show all versions of commons-certvalidator Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.09.03 at 04:42:59 PM UTC
//
package no.difi.certvalidator.jaxb;
import java.util.ArrayList;
import java.util.List;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import no.difi.certvalidator.jaxb.xmldsig.SignatureType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Validator" type="{http://difi.no/xsd/certvalidator/1.0}ValidatorType" maxOccurs="unbounded"/>
* <element name="CertificateBucket" type="{http://difi.no/xsd/certvalidator/1.0}CertificateBucketType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="KeyStore" type="{http://difi.no/xsd/certvalidator/1.0}KeyStoreType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Extension" type="{http://difi.no/xsd/certvalidator/1.0}ExtensionType" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"validator",
"certificateBucket",
"keyStore",
"extension",
"signature"
})
@XmlRootElement(name = "ValidatorRecipe")
public class ValidatorRecipe {
@XmlElement(name = "Validator", required = true)
protected List validator;
@XmlElement(name = "CertificateBucket")
protected List certificateBucket;
@XmlElement(name = "KeyStore")
protected List keyStore;
@XmlElement(name = "Extension")
protected List extension;
@XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
protected SignatureType signature;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "version", required = true)
protected String version;
/**
* Gets the value of the validator property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the validator property.
*
*
* For example, to add a new item, do as follows:
*
* getValidator().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ValidatorType }
*
*
*/
public List getValidator() {
if (validator == null) {
validator = new ArrayList();
}
return this.validator;
}
/**
* Gets the value of the certificateBucket property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the certificateBucket property.
*
*
* For example, to add a new item, do as follows:
*
* getCertificateBucket().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CertificateBucketType }
*
*
*/
public List getCertificateBucket() {
if (certificateBucket == null) {
certificateBucket = new ArrayList();
}
return this.certificateBucket;
}
/**
* Gets the value of the keyStore property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the keyStore property.
*
*
* For example, to add a new item, do as follows:
*
* getKeyStore().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link KeyStoreType }
*
*
*/
public List getKeyStore() {
if (keyStore == null) {
keyStore = new ArrayList();
}
return this.keyStore;
}
/**
* Gets the value of the extension property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the extension property.
*
*
* For example, to add a new item, do as follows:
*
* getExtension().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ExtensionType }
*
*
*/
public List getExtension() {
if (extension == null) {
extension = new ArrayList();
}
return this.extension;
}
/**
* Gets the value of the signature property.
*
* @return
* possible object is
* {@link SignatureType }
*
*/
public SignatureType getSignature() {
return signature;
}
/**
* Sets the value of the signature property.
*
* @param value
* allowed object is
* {@link SignatureType }
*
*/
public void setSignature(SignatureType value) {
this.signature = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}