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

com.adyen.model.nexo.CardReaderAPDURequest Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

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


/**
 * Definition: Content of the Card Reader APDU Request messageType. -- Usage: It contains the APDU request to send to the chip of the card, and a possible invitation messageType to display on the CashierInterface or the CustomerInterface.
 *
 * 

Java class for CardReaderAPDURequest complex type. * *

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

 * <complexType name="CardReaderAPDURequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="APDUData" type="{}APDUData" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="APDUClass" use="required" type="{}APDUClass" />
 *       <attribute name="APDUInstruction" use="required" type="{}APDUInstruction" />
 *       <attribute name="APDUPar1" use="required" type="{}APDUPar1" />
 *       <attribute name="APDUPar2" use="required" type="{}APDUPar2" />
 *       <attribute name="APDUExpectedLength" type="{}APDUExpectedLength" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CardReaderAPDURequest", propOrder = { "apduData" }) public class CardReaderAPDURequest { /** * The Apdu data. */ @XmlElement(name = "APDUData") protected byte[] apduData; /** * The Apdu class. */ @XmlAttribute(name = "APDUClass", required = true) protected byte[] apduClass; /** * The Apdu instruction. */ @XmlAttribute(name = "APDUInstruction", required = true) protected byte[] apduInstruction; /** * The Apdu par 1. */ @XmlAttribute(name = "APDUPar1", required = true) protected byte[] apduPar1; /** * The Apdu par 2. */ @XmlAttribute(name = "APDUPar2", required = true) protected byte[] apduPar2; /** * The Apdu expected length. */ @XmlAttribute(name = "APDUExpectedLength") protected byte[] apduExpectedLength; /** * Gets the value of the apduData property. * * @return possible object is byte[] */ public byte[] getAPDUData() { return apduData; } /** * Sets the value of the apduData property. * * @param value allowed object is byte[] */ public void setAPDUData(byte[] value) { this.apduData = value; } /** * Gets the value of the apduClass property. * * @return possible object is byte[] */ public byte[] getAPDUClass() { return apduClass; } /** * Sets the value of the apduClass property. * * @param value allowed object is byte[] */ public void setAPDUClass(byte[] value) { this.apduClass = value; } /** * Gets the value of the apduInstruction property. * * @return possible object is byte[] */ public byte[] getAPDUInstruction() { return apduInstruction; } /** * Sets the value of the apduInstruction property. * * @param value allowed object is byte[] */ public void setAPDUInstruction(byte[] value) { this.apduInstruction = value; } /** * Gets the value of the apduPar1 property. * * @return possible object is byte[] */ public byte[] getAPDUPar1() { return apduPar1; } /** * Sets the value of the apduPar1 property. * * @param value allowed object is byte[] */ public void setAPDUPar1(byte[] value) { this.apduPar1 = value; } /** * Gets the value of the apduPar2 property. * * @return possible object is byte[] */ public byte[] getAPDUPar2() { return apduPar2; } /** * Sets the value of the apduPar2 property. * * @param value allowed object is byte[] */ public void setAPDUPar2(byte[] value) { this.apduPar2 = value; } /** * Gets the value of the apduExpectedLength property. * * @return possible object is byte[] */ public byte[] getAPDUExpectedLength() { return apduExpectedLength; } /** * Sets the value of the apduExpectedLength property. * * @param value allowed object is byte[] */ public void setAPDUExpectedLength(byte[] value) { this.apduExpectedLength = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy