de.gematik.ws.conn.vsds.vsdservice.v5.ReadVSD Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.vsds.vsdservice.v5;
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 name="EhcHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="HpcHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="PerformOnlineCheck" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ReadOnlineReceipt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element ref="{http://ws.gematik.de/conn/ConnectorContext/v2.0}Context"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ehcHandle",
"hpcHandle",
"performOnlineCheck",
"readOnlineReceipt",
"context"
})
@XmlRootElement(name = "ReadVSD")
public class ReadVSD {
@XmlElement(name = "EhcHandle", required = true)
protected String ehcHandle;
@XmlElement(name = "HpcHandle", required = true)
protected String hpcHandle;
@XmlElement(name = "PerformOnlineCheck")
protected boolean performOnlineCheck;
@XmlElement(name = "ReadOnlineReceipt")
protected boolean readOnlineReceipt;
@XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true)
protected ContextType context;
/**
* Gets the value of the ehcHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEhcHandle() {
return ehcHandle;
}
/**
* Sets the value of the ehcHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEhcHandle(String value) {
this.ehcHandle = value;
}
/**
* Gets the value of the hpcHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHpcHandle() {
return hpcHandle;
}
/**
* Sets the value of the hpcHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHpcHandle(String value) {
this.hpcHandle = value;
}
/**
* Gets the value of the performOnlineCheck property.
*
*/
public boolean isPerformOnlineCheck() {
return performOnlineCheck;
}
/**
* Sets the value of the performOnlineCheck property.
*
*/
public void setPerformOnlineCheck(boolean value) {
this.performOnlineCheck = value;
}
/**
* Gets the value of the readOnlineReceipt property.
*
*/
public boolean isReadOnlineReceipt() {
return readOnlineReceipt;
}
/**
* Sets the value of the readOnlineReceipt property.
*
*/
public void setReadOnlineReceipt(boolean value) {
this.readOnlineReceipt = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy