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

org.certificateservices.messages.keystoremgmt.jaxb.RemoveKeyRequest 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import org.certificateservices.messages.csmessages.jaxb.CSRequest;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/csmessages2_0}CSRequest">
 *       <sequence>
 *         <element name="keyStoreProviderName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="organisationShortName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="alias" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "keyStoreProviderName", "organisationShortName", "alias" }) @XmlRootElement(name = "RemoveKeyRequest", namespace = "http://certificateservices.org/xsd/keystoremgmt2_0") public class RemoveKeyRequest extends CSRequest { @XmlElement(namespace = "http://certificateservices.org/xsd/keystoremgmt2_0", required = true) protected String keyStoreProviderName; @XmlElement(namespace = "http://certificateservices.org/xsd/keystoremgmt2_0", required = true) protected String organisationShortName; @XmlElement(namespace = "http://certificateservices.org/xsd/keystoremgmt2_0", required = true) protected String alias; /** * Gets the value of the keyStoreProviderName property. * * @return * possible object is * {@link String } * */ public String getKeyStoreProviderName() { return keyStoreProviderName; } /** * Sets the value of the keyStoreProviderName property. * * @param value * allowed object is * {@link String } * */ public void setKeyStoreProviderName(String value) { this.keyStoreProviderName = value; } /** * Gets the value of the organisationShortName property. * * @return * possible object is * {@link String } * */ public String getOrganisationShortName() { return organisationShortName; } /** * Sets the value of the organisationShortName property. * * @param value * allowed object is * {@link String } * */ public void setOrganisationShortName(String value) { this.organisationShortName = value; } /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy