de.gematik.ws.conn.cardservice.v8.UnblockPin Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.cardservice.v8;
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.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"/>
* <element ref="{http://ws.gematik.de/conn/ConnectorCommon/v5.0}CardHandle"/>
* <element ref="{http://ws.gematik.de/conn/CardServiceCommon/v2.0}PinTyp"/>
* <element name="SetNewPin" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"context",
"cardHandle",
"pinTyp",
"setNewPin"
})
@XmlRootElement(name = "UnblockPin")
public class UnblockPin {
@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", required = true)
protected String cardHandle;
@XmlElement(name = "PinTyp", namespace = "http://ws.gematik.de/conn/CardServiceCommon/v2.0", required = true)
protected String pinTyp;
@XmlElement(name = "SetNewPin")
protected Boolean setNewPin;
/**
* 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 pinTyp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPinTyp() {
return pinTyp;
}
/**
* Sets the value of the pinTyp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPinTyp(String value) {
this.pinTyp = value;
}
/**
* Gets the value of the setNewPin property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSetNewPin() {
return setNewPin;
}
/**
* Sets the value of the setNewPin property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSetNewPin(Boolean value) {
this.setNewPin = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy