![JAR search and dependency download from the Maven repository](/logo.png)
org.xipki.ca.certprofile.x509.jaxb.BiometricInfo Maven / Gradle / Ivy
package org.xipki.ca.certprofile.x509.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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* 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="type" type="{http://xipki.org/ca/xmlprofile/v2}biometricTypeType" maxOccurs="unbounded"/>
* <element name="hashAlgorithm" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded"/>
* <element name="includeSourceDataUri" type="{http://xipki.org/ca/xmlprofile/v2}tripleState"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"type",
"hashAlgorithm",
"includeSourceDataUri"
})
@XmlRootElement(name = "biometricInfo")
public class BiometricInfo {
@XmlElement(required = true)
protected List type;
@XmlElement(required = true)
protected List hashAlgorithm;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected TripleState includeSourceDataUri;
/**
* Gets the value of the type 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 type property.
*
*
* For example, to add a new item, do as follows:
*
* getType().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BiometricTypeType }
*
*
*/
public List getType() {
if (type == null) {
type = new ArrayList();
}
return this.type;
}
/**
* Gets the value of the hashAlgorithm 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 hashAlgorithm property.
*
*
* For example, to add a new item, do as follows:
*
* getHashAlgorithm().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OidWithDescType }
*
*
*/
public List getHashAlgorithm() {
if (hashAlgorithm == null) {
hashAlgorithm = new ArrayList();
}
return this.hashAlgorithm;
}
/**
* Gets the value of the includeSourceDataUri property.
*
* @return
* possible object is
* {@link TripleState }
*
*/
public TripleState getIncludeSourceDataUri() {
return includeSourceDataUri;
}
/**
* Sets the value of the includeSourceDataUri property.
*
* @param value
* allowed object is
* {@link TripleState }
*
*/
public void setIncludeSourceDataUri(TripleState value) {
this.includeSourceDataUri = value;
}
}