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

org.certificateservices.messages.credmanagement.jaxb.RecoverableKey Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.03.07 at 08:36:38 AM CET 
//


package org.certificateservices.messages.credmanagement.jaxb;

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


/**
 * 

Java class for RecoverableKey complex type. * *

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

 * <complexType name="RecoverableKey">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="relatedCredentialRequestId" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="encryptedData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecoverableKey", propOrder = { "relatedCredentialRequestId", "encryptedData" }) public class RecoverableKey { protected int relatedCredentialRequestId; @XmlElement(required = true) protected byte[] encryptedData; /** * Gets the value of the relatedCredentialRequestId property. * */ public int getRelatedCredentialRequestId() { return relatedCredentialRequestId; } /** * Sets the value of the relatedCredentialRequestId property. * */ public void setRelatedCredentialRequestId(int value) { this.relatedCredentialRequestId = 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