net.authorize.api.contract.v1.KeyValue Maven / Gradle / Ivy
//
// 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.11.18 at 01:35:18 PM IST
//
package net.authorize.api.contract.v1;
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 KeyValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KeyValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Encoding" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}EncodingType"/>
* <element name="EncryptionAlgorithm" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}EncryptionAlgorithmType"/>
* <element name="Scheme" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}KeyManagementScheme"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KeyValue", propOrder = {
"encoding",
"encryptionAlgorithm",
"scheme"
})
public class KeyValue {
@XmlElement(name = "Encoding", required = true)
protected EncodingType encoding;
@XmlElement(name = "EncryptionAlgorithm", required = true)
protected EncryptionAlgorithmType encryptionAlgorithm;
@XmlElement(name = "Scheme", required = true)
protected KeyManagementScheme scheme;
/**
* Gets the value of the encoding property.
*
* @return
* possible object is
* {@link EncodingType }
*
*/
public EncodingType getEncoding() {
return encoding;
}
/**
* Sets the value of the encoding property.
*
* @param value
* allowed object is
* {@link EncodingType }
*
*/
public void setEncoding(EncodingType value) {
this.encoding = value;
}
/**
* Gets the value of the encryptionAlgorithm property.
*
* @return
* possible object is
* {@link EncryptionAlgorithmType }
*
*/
public EncryptionAlgorithmType getEncryptionAlgorithm() {
return encryptionAlgorithm;
}
/**
* Sets the value of the encryptionAlgorithm property.
*
* @param value
* allowed object is
* {@link EncryptionAlgorithmType }
*
*/
public void setEncryptionAlgorithm(EncryptionAlgorithmType value) {
this.encryptionAlgorithm = value;
}
/**
* Gets the value of the scheme property.
*
* @return
* possible object is
* {@link KeyManagementScheme }
*
*/
public KeyManagementScheme getScheme() {
return scheme;
}
/**
* Sets the value of the scheme property.
*
* @param value
* allowed object is
* {@link KeyManagementScheme }
*
*/
public void setScheme(KeyManagementScheme value) {
this.scheme = value;
}
}