org.xipki.ca.certprofile.x509.jaxb.RSAPSSParameters 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.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://xipki.org/ca/xmlprofile/v2}BaseRSAParametersType">
* <sequence>
* <element name="hashAlgorithm" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="maskGenAlgorithm" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="saltLength" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
* <element name="trailerField" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"hashAlgorithm",
"maskGenAlgorithm",
"saltLength",
"trailerField"
})
@XmlRootElement(name = "RSAPSSParameters")
public class RSAPSSParameters
extends BaseRSAParametersType
{
protected List hashAlgorithm;
protected List maskGenAlgorithm;
@XmlElement(type = Integer.class)
protected List saltLength;
@XmlElement(type = Integer.class)
protected List trailerField;
/**
* 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 maskGenAlgorithm 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 maskGenAlgorithm property.
*
*
* For example, to add a new item, do as follows:
*
* getMaskGenAlgorithm().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OidWithDescType }
*
*
*/
public List getMaskGenAlgorithm() {
if (maskGenAlgorithm == null) {
maskGenAlgorithm = new ArrayList();
}
return this.maskGenAlgorithm;
}
/**
* Gets the value of the saltLength 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 saltLength property.
*
*
* For example, to add a new item, do as follows:
*
* getSaltLength().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List getSaltLength() {
if (saltLength == null) {
saltLength = new ArrayList();
}
return this.saltLength;
}
/**
* Gets the value of the trailerField 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 trailerField property.
*
*
* For example, to add a new item, do as follows:
*
* getTrailerField().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List getTrailerField() {
if (trailerField == null) {
trailerField = new ArrayList();
}
return this.trailerField;
}
}