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

net.authorize.api.contract.v1.KeyValue Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show 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: 2018.06.13 at 02:31:45 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.XmlSchemaType;
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) @XmlSchemaType(name = "string") protected EncodingType encoding; @XmlElement(name = "EncryptionAlgorithm", required = true) @XmlSchemaType(name = "string") 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy