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

org.certificateservices.messages.keystoremgmt.jaxb.CredentialRequestParams Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.02 at 10:40:08 AM CEST 
//


package org.certificateservices.messages.keystoremgmt.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CredentialRequestParams complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CredentialRequestParams">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="alias" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="keyAlg" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="keySpec" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="credentialSubType" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="description" type="{http://certificateservices.org/xsd/csmessages2_0}descriptionstring" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CredentialRequestParams", namespace = "http://certificateservices.org/xsd/keystoremgmt2_0", propOrder = { "alias", "keyAlg", "keySpec", "credentialSubType", "description" }) @XmlSeeAlso({ X509CredentialRequestParams.class }) public class CredentialRequestParams { @XmlElement(required = true) protected String alias; @XmlElement(required = true) protected String keyAlg; @XmlElement(required = true) protected String keySpec; @XmlElement(required = true) protected String credentialSubType; protected String description; /** * Gets the value of the alias property. * * @return * possible object is * {@link String } * */ public String getAlias() { return alias; } /** * Sets the value of the alias property. * * @param value * allowed object is * {@link String } * */ public void setAlias(String value) { this.alias = value; } /** * Gets the value of the keyAlg property. * * @return * possible object is * {@link String } * */ public String getKeyAlg() { return keyAlg; } /** * Sets the value of the keyAlg property. * * @param value * allowed object is * {@link String } * */ public void setKeyAlg(String value) { this.keyAlg = value; } /** * Gets the value of the keySpec property. * * @return * possible object is * {@link String } * */ public String getKeySpec() { return keySpec; } /** * Sets the value of the keySpec property. * * @param value * allowed object is * {@link String } * */ public void setKeySpec(String value) { this.keySpec = value; } /** * Gets the value of the credentialSubType property. * * @return * possible object is * {@link String } * */ public String getCredentialSubType() { return credentialSubType; } /** * Sets the value of the credentialSubType property. * * @param value * allowed object is * {@link String } * */ public void setCredentialSubType(String value) { this.credentialSubType = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy