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

de.gematik.ws.conn.vsds.vsdservice.v5.ReadVSDResponse Maven / Gradle / Ivy

The newest version!

package de.gematik.ws.conn.vsds.vsdservice.v5;

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="PersoenlicheVersichertendaten" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element name="AllgemeineVersicherungsdaten" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element name="GeschuetzteVersichertendaten" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="VSD_Status" type="{http://ws.gematik.de/conn/vsds/VSDService/v5.2}VSD_StatusType"/>
 *         <element name="Pruefungsnachweis" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}base64Binary">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "persoenlicheVersichertendaten", "allgemeineVersicherungsdaten", "geschuetzteVersichertendaten", "vsdStatus", "pruefungsnachweis" }) @XmlRootElement(name = "ReadVSDResponse") public class ReadVSDResponse { @XmlElement(name = "PersoenlicheVersichertendaten", required = true) protected byte[] persoenlicheVersichertendaten; @XmlElement(name = "AllgemeineVersicherungsdaten", required = true) protected byte[] allgemeineVersicherungsdaten; @XmlElement(name = "GeschuetzteVersichertendaten") protected byte[] geschuetzteVersichertendaten; @XmlElement(name = "VSD_Status", required = true) protected VSDStatusType vsdStatus; @XmlElement(name = "Pruefungsnachweis") protected byte[] pruefungsnachweis; /** * Gets the value of the persoenlicheVersichertendaten property. * * @return * possible object is * byte[] */ public byte[] getPersoenlicheVersichertendaten() { return persoenlicheVersichertendaten; } /** * Sets the value of the persoenlicheVersichertendaten property. * * @param value * allowed object is * byte[] */ public void setPersoenlicheVersichertendaten(byte[] value) { this.persoenlicheVersichertendaten = value; } /** * Gets the value of the allgemeineVersicherungsdaten property. * * @return * possible object is * byte[] */ public byte[] getAllgemeineVersicherungsdaten() { return allgemeineVersicherungsdaten; } /** * Sets the value of the allgemeineVersicherungsdaten property. * * @param value * allowed object is * byte[] */ public void setAllgemeineVersicherungsdaten(byte[] value) { this.allgemeineVersicherungsdaten = value; } /** * Gets the value of the geschuetzteVersichertendaten property. * * @return * possible object is * byte[] */ public byte[] getGeschuetzteVersichertendaten() { return geschuetzteVersichertendaten; } /** * Sets the value of the geschuetzteVersichertendaten property. * * @param value * allowed object is * byte[] */ public void setGeschuetzteVersichertendaten(byte[] value) { this.geschuetzteVersichertendaten = value; } /** * Gets the value of the vsdStatus property. * * @return * possible object is * {@link VSDStatusType } * */ public VSDStatusType getVSDStatus() { return vsdStatus; } /** * Sets the value of the vsdStatus property. * * @param value * allowed object is * {@link VSDStatusType } * */ public void setVSDStatus(VSDStatusType value) { this.vsdStatus = value; } /** * Gets the value of the pruefungsnachweis property. * * @return * possible object is * byte[] */ public byte[] getPruefungsnachweis() { return pruefungsnachweis; } /** * Sets the value of the pruefungsnachweis property. * * @param value * allowed object is * byte[] */ public void setPruefungsnachweis(byte[] value) { this.pruefungsnachweis = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy