![JAR search and dependency download from the Maven repository](/logo.png)
com.alextherapeutics.diga.model.generatedxml.codevalidation.PersonCtp Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.03 at 07:49:55 AM UTC
//
package com.alextherapeutics.diga.model.generatedxml.codevalidation;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Basisinformationen zu einer natürlichen Person
*
* Java class for Person_Ctp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Person_Ctp">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{GI4X:/xml-schema/GI4X-basis/2.0}Name_Ctp" minOccurs="0"/>
* <element name="Anschrift" type="{GI4X:/xml-schema/GI4X-basis/2.0}Anschrift_Ctp" minOccurs="0"/>
* <element name="Geburtsdatum" type="{GI4X:/xml-schema/GI4X-basis/2.0}UngenauesDatum_Ctp" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Person_Ctp", propOrder = {
"name",
"anschrift",
"geburtsdatum"
})
public class PersonCtp {
@XmlElement(name = "Name")
protected NameCtp name;
@XmlElement(name = "Anschrift")
protected AnschriftCtp anschrift;
@XmlElement(name = "Geburtsdatum")
protected UngenauesDatumCtp geburtsdatum;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link NameCtp }
*
*/
public NameCtp getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link NameCtp }
*
*/
public void setName(NameCtp value) {
this.name = value;
}
/**
* Gets the value of the anschrift property.
*
* @return
* possible object is
* {@link AnschriftCtp }
*
*/
public AnschriftCtp getAnschrift() {
return anschrift;
}
/**
* Sets the value of the anschrift property.
*
* @param value
* allowed object is
* {@link AnschriftCtp }
*
*/
public void setAnschrift(AnschriftCtp value) {
this.anschrift = value;
}
/**
* Gets the value of the geburtsdatum property.
*
* @return
* possible object is
* {@link UngenauesDatumCtp }
*
*/
public UngenauesDatumCtp getGeburtsdatum() {
return geburtsdatum;
}
/**
* Sets the value of the geburtsdatum property.
*
* @param value
* allowed object is
* {@link UngenauesDatumCtp }
*
*/
public void setGeburtsdatum(UngenauesDatumCtp value) {
this.geburtsdatum = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy