Class ValidatorRecipe
- java.lang.Object
-
- network.oxalis.commons.certvalidator.jaxb.ValidatorRecipe
-
public class ValidatorRecipe extends Object
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://oxalis.network/xsd/certvalidator/1.0}ValidatorType" maxOccurs="unbounded"/> <element name="CertificateBucket" type="{http://oxalis.network/xsd/certvalidator/1.0}CertificateBucketType" maxOccurs="unbounded" minOccurs="0"/> <element name="KeyStore" type="{http://oxalis.network/xsd/certvalidator/1.0}KeyStoreType" maxOccurs="unbounded" minOccurs="0"/> <element name="Extension" type="{http://oxalis.network/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>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<CertificateBucketType>certificateBucketprotected List<ExtensionType>extensionprotected List<KeyStoreType>keyStoreprotected Stringnameprotected SignatureTypesignatureprotected List<ValidatorType>validatorprotected Stringversion
-
Constructor Summary
Constructors Constructor Description ValidatorRecipe()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CertificateBucketType>getCertificateBucket()Gets the value of the certificateBucket property.List<ExtensionType>getExtension()Gets the value of the extension property.List<KeyStoreType>getKeyStore()Gets the value of the keyStore property.StringgetName()Gets the value of the name property.SignatureTypegetSignature()Gets the value of the signature property.List<ValidatorType>getValidator()Gets the value of the validator property.StringgetVersion()Gets the value of the version property.voidsetName(String value)Sets the value of the name property.voidsetSignature(SignatureType value)Sets the value of the signature property.voidsetVersion(String value)Sets the value of the version property.
-
-
-
Field Detail
-
validator
protected List<ValidatorType> validator
-
certificateBucket
protected List<CertificateBucketType> certificateBucket
-
keyStore
protected List<KeyStoreType> keyStore
-
extension
protected List<ExtensionType> extension
-
signature
protected SignatureType signature
-
name
protected String name
-
version
protected String version
-
-
Method Detail
-
getValidator
public List<ValidatorType> getValidator()
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
setmethod 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
ValidatorType
-
getCertificateBucket
public List<CertificateBucketType> getCertificateBucket()
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
setmethod 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
CertificateBucketType
-
getKeyStore
public List<KeyStoreType> getKeyStore()
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
setmethod 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
KeyStoreType
-
getExtension
public List<ExtensionType> getExtension()
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
setmethod 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
ExtensionType
-
getSignature
public SignatureType getSignature()
Gets the value of the signature property.- Returns:
- possible object is
SignatureType
-
setSignature
public void setSignature(SignatureType value)
Sets the value of the signature property.- Parameters:
value- allowed object isSignatureType
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getVersion
public String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
-