// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.01.24 at 06:43:16 AM CET // package eu.europa.esig.jaxb.policy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CryptographicConstraint complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CryptographicConstraint"> * <complexContent> * <extension base="{http://dss.esig.europa.eu/validation/policy}LevelConstraint"> * <sequence> * <element name="AcceptableEncryptionAlgo" type="{http://dss.esig.europa.eu/validation/policy}ListAlgo" minOccurs="0"/> * <element name="MiniPublicKeySize" type="{http://dss.esig.europa.eu/validation/policy}ListAlgo" minOccurs="0"/> * <element name="AcceptableDigestAlgo" type="{http://dss.esig.europa.eu/validation/policy}ListAlgo" minOccurs="0"/> * <element name="AlgoExpirationDate" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Algo" type="{http://dss.esig.europa.eu/validation/policy}Algo" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="Format" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CryptographicConstraint", propOrder = { "acceptableEncryptionAlgo", "miniPublicKeySize", "acceptableDigestAlgo", "algoExpirationDate" }) public class CryptographicConstraint extends LevelConstraint { @XmlElement(name = "AcceptableEncryptionAlgo") protected ListAlgo acceptableEncryptionAlgo; @XmlElement(name = "MiniPublicKeySize") protected ListAlgo miniPublicKeySize; @XmlElement(name = "AcceptableDigestAlgo") protected ListAlgo acceptableDigestAlgo; @XmlElement(name = "AlgoExpirationDate") protected AlgoExpirationDate algoExpirationDate; /** * Gets the value of the acceptableEncryptionAlgo property. * * @return * possible object is * {@link ListAlgo } * */ public ListAlgo getAcceptableEncryptionAlgo() { return acceptableEncryptionAlgo; } /** * Sets the value of the acceptableEncryptionAlgo property. * * @param value * allowed object is * {@link ListAlgo } * */ public void setAcceptableEncryptionAlgo(ListAlgo value) { this.acceptableEncryptionAlgo = value; } /** * Gets the value of the miniPublicKeySize property. * * @return * possible object is * {@link ListAlgo } * */ public ListAlgo getMiniPublicKeySize() { return miniPublicKeySize; } /** * Sets the value of the miniPublicKeySize property. * * @param value * allowed object is * {@link ListAlgo } * */ public void setMiniPublicKeySize(ListAlgo value) { this.miniPublicKeySize = value; } /** * Gets the value of the acceptableDigestAlgo property. * * @return * possible object is * {@link ListAlgo } * */ public ListAlgo getAcceptableDigestAlgo() { return acceptableDigestAlgo; } /** * Sets the value of the acceptableDigestAlgo property. * * @param value * allowed object is * {@link ListAlgo } * */ public void setAcceptableDigestAlgo(ListAlgo value) { this.acceptableDigestAlgo = value; } /** * Gets the value of the algoExpirationDate property. * * @return * possible object is * {@link AlgoExpirationDate } * */ public AlgoExpirationDate getAlgoExpirationDate() { return algoExpirationDate; } /** * Sets the value of the algoExpirationDate property. * * @param value * allowed object is * {@link AlgoExpirationDate } * */ public void setAlgoExpirationDate(AlgoExpirationDate value) { this.algoExpirationDate = value; } }