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

org.certificateservices.messages.pkimessages.jaxb.FetchHardTokenDataResponse Maven / Gradle / Ivy

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


package org.certificateservices.messages.pkimessages.jaxb;

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


/**
 * 

Java class for FetchHardTokenDataResponse complex type. * *

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

 * <complexType name="FetchHardTokenDataResponse">
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/pkimessages1_0}PKIResponse">
 *       <sequence>
 *         <element name="tokenSerial" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="encryptedData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FetchHardTokenDataResponse", propOrder = { "tokenSerial", "encryptedData" }) public class FetchHardTokenDataResponse extends PKIResponse { @XmlElement(required = true) protected String tokenSerial; @XmlElement(required = true) protected byte[] encryptedData; /** * Gets the value of the tokenSerial property. * * @return * possible object is * {@link String } * */ public String getTokenSerial() { return tokenSerial; } /** * Sets the value of the tokenSerial property. * * @param value * allowed object is * {@link String } * */ public void setTokenSerial(String value) { this.tokenSerial = value; } /** * Gets the value of the encryptedData property. * * @return * possible object is * byte[] */ public byte[] getEncryptedData() { return encryptedData; } /** * Sets the value of the encryptedData property. * * @param value * allowed object is * byte[] */ public void setEncryptedData(byte[] value) { this.encryptedData = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy