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

org.certificateservices.messages.sensitivekeys.jaxb.EncodedKey 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.01 at 08:01:08 PM CET 
//


package org.certificateservices.messages.sensitivekeys.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 EncodedKey complex type. * *

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

 * <complexType name="EncodedKey">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="algorithm" type="{http://certificateservices.org/xsd/sensitivekeys}notemptystring"/>
 *         <element name="data" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element name="format" type="{http://certificateservices.org/xsd/sensitivekeys}notemptystring"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EncodedKey", propOrder = { "algorithm", "data", "format" }) public class EncodedKey { @XmlElement(required = true) protected String algorithm; @XmlElement(required = true) protected byte[] data; @XmlElement(required = true) protected String format; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { return algorithm; } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } /** * Gets the value of the data property. * * @return * possible object is * byte[] */ public byte[] getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * byte[] */ public void setData(byte[] value) { this.data = value; } /** * Gets the value of the format property. * * @return * possible object is * {@link String } * */ public String getFormat() { return format; } /** * Sets the value of the format property. * * @param value * allowed object is * {@link String } * */ public void setFormat(String value) { this.format = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy