All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xipki.ca.certprofile.x509.jaxb.SMIMECapability Maven / Gradle / Ivy

The newest version!

package org.xipki.ca.certprofile.x509.jaxb;

import java.math.BigInteger;
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>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="capabilityID" type="{http://xipki.org/ca/xmlprofile/v2}oidWithDescType"/>
 *         <element name="parameters" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <choice>
 *                   <element name="integer" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *                   <element name="base64Binary" type="{http://xipki.org/ca/xmlprofile/v2}base64BinaryWithDescType"/>
 *                 </choice>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "capabilityID", "parameters" }) @XmlRootElement(name = "SMIMECapability") public class SMIMECapability { @XmlElement(required = true) protected OidWithDescType capabilityID; protected SMIMECapability.Parameters parameters; /** * Gets the value of the capabilityID property. * * @return * possible object is * {@link OidWithDescType } * */ public OidWithDescType getCapabilityID() { return capabilityID; } /** * Sets the value of the capabilityID property. * * @param value * allowed object is * {@link OidWithDescType } * */ public void setCapabilityID(OidWithDescType value) { this.capabilityID = value; } /** * Gets the value of the parameters property. * * @return * possible object is * {@link SMIMECapability.Parameters } * */ public SMIMECapability.Parameters getParameters() { return parameters; } /** * Sets the value of the parameters property. * * @param value * allowed object is * {@link SMIMECapability.Parameters } * */ public void setParameters(SMIMECapability.Parameters value) { this.parameters = value; } /** *

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">
     *       <choice>
     *         <element name="integer" type="{http://www.w3.org/2001/XMLSchema}integer"/>
     *         <element name="base64Binary" type="{http://xipki.org/ca/xmlprofile/v2}base64BinaryWithDescType"/>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "integer", "base64Binary" }) public static class Parameters { protected BigInteger integer; protected Base64BinaryWithDescType base64Binary; /** * Gets the value of the integer property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getInteger() { return integer; } /** * Sets the value of the integer property. * * @param value * allowed object is * {@link BigInteger } * */ public void setInteger(BigInteger value) { this.integer = value; } /** * Gets the value of the base64Binary property. * * @return * possible object is * {@link Base64BinaryWithDescType } * */ public Base64BinaryWithDescType getBase64Binary() { return base64Binary; } /** * Sets the value of the base64Binary property. * * @param value * allowed object is * {@link Base64BinaryWithDescType } * */ public void setBase64Binary(Base64BinaryWithDescType value) { this.base64Binary = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy