de.gematik.ws.conn.cardterminalservice.v1.EjectCard Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.cardterminalservice.v1;
import java.math.BigInteger;
import de.gematik.ws.conn.connectorcontext.v2.ContextType;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://ws.gematik.de/conn/ConnectorContext/v2.0}Context"/>
* <choice>
* <element ref="{http://ws.gematik.de/conn/ConnectorCommon/v5.0}CardHandle"/>
* <element ref="{http://ws.gematik.de/conn/CardTerminalService/v1.1}Slot"/>
* </choice>
* <element ref="{http://ws.gematik.de/conn/CardTerminalService/v1.1}DisplayMsg" minOccurs="0"/>
* <element ref="{http://ws.gematik.de/conn/CardTerminalService/v1.1}TimeOut" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"context",
"cardHandle",
"slot",
"displayMsg",
"timeOut"
})
@XmlRootElement(name = "EjectCard")
public class EjectCard {
@XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true)
protected ContextType context;
@XmlElement(name = "CardHandle", namespace = "http://ws.gematik.de/conn/ConnectorCommon/v5.0")
protected String cardHandle;
@XmlElement(name = "Slot")
protected Slot slot;
@XmlElement(name = "DisplayMsg")
protected String displayMsg;
@XmlElement(name = "TimeOut")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger timeOut;
/**
* Gets the value of the context property.
*
* @return
* possible object is
* {@link ContextType }
*
*/
public ContextType getContext() {
return context;
}
/**
* Sets the value of the context property.
*
* @param value
* allowed object is
* {@link ContextType }
*
*/
public void setContext(ContextType value) {
this.context = value;
}
/**
* Gets the value of the cardHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCardHandle() {
return cardHandle;
}
/**
* Sets the value of the cardHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCardHandle(String value) {
this.cardHandle = value;
}
/**
* Gets the value of the slot property.
*
* @return
* possible object is
* {@link Slot }
*
*/
public Slot getSlot() {
return slot;
}
/**
* Sets the value of the slot property.
*
* @param value
* allowed object is
* {@link Slot }
*
*/
public void setSlot(Slot value) {
this.slot = value;
}
/**
* Gets the value of the displayMsg property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayMsg() {
return displayMsg;
}
/**
* Sets the value of the displayMsg property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayMsg(String value) {
this.displayMsg = value;
}
/**
* Gets the value of the timeOut property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTimeOut() {
return timeOut;
}
/**
* Sets the value of the timeOut property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTimeOut(BigInteger value) {
this.timeOut = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy