org.xipki.ca.certprofile.x509.jaxb.GostParameters 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.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>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="publicKeyParamSet" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="digestParamSet" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="encryptionParamSet" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"publicKeyParamSet",
"digestParamSet",
"encryptionParamSet"
})
@XmlRootElement(name = "gostParameters")
public class GostParameters {
protected List publicKeyParamSet;
protected List digestParamSet;
protected List encryptionParamSet;
/**
* Gets the value of the publicKeyParamSet 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 publicKeyParamSet property.
*
*
* For example, to add a new item, do as follows:
*
* getPublicKeyParamSet().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OidWithDescType }
*
*
*/
public List getPublicKeyParamSet() {
if (publicKeyParamSet == null) {
publicKeyParamSet = new ArrayList();
}
return this.publicKeyParamSet;
}
/**
* Gets the value of the digestParamSet 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 digestParamSet property.
*
*
* For example, to add a new item, do as follows:
*
* getDigestParamSet().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OidWithDescType }
*
*
*/
public List getDigestParamSet() {
if (digestParamSet == null) {
digestParamSet = new ArrayList();
}
return this.digestParamSet;
}
/**
* Gets the value of the encryptionParamSet 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 encryptionParamSet property.
*
*
* For example, to add a new item, do as follows:
*
* getEncryptionParamSet().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OidWithDescType }
*
*
*/
public List getEncryptionParamSet() {
if (encryptionParamSet == null) {
encryptionParamSet = new ArrayList();
}
return this.encryptionParamSet;
}
}