package de.fh_giessen.epr.wsregister.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ ermöglicht die Ablage generischer Angaben zu einem Benutzer aus dem Standesamt im Registerverfahren. Diese Angaben können in individuellen Projekten zum Registerverfahren definiert werden und ermöglichen z.B. auch die Ablage von fachverfahrensspezifischen Rechten. Das Registerverfahren darf diese Angaben nicht inhaltlich interpretieren, sondern nur zentral ablegen. Die Ablage erfolgt als Paar von Bezeichnung und Wert. * *

Java class for TUserAngabe complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TUserAngabe">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Wert" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TUserAngabe", propOrder = { "bezeichnung", "wert" }) public class TUserAngabe { @XmlElement(name = "Bezeichnung", required = true) protected String bezeichnung; @XmlElement(name = "Wert", required = true) protected String wert; /** * Gets the value of the bezeichnung property. * * @return * possible object is * {@link String } * */ public String getBezeichnung() { return bezeichnung; } /** * Sets the value of the bezeichnung property. * * @param value * allowed object is * {@link String } * */ public void setBezeichnung(String value) { this.bezeichnung = value; } /** * Gets the value of the wert property. * * @return * possible object is * {@link String } * */ public String getWert() { return wert; } /** * Sets the value of the wert property. * * @param value * allowed object is * {@link String } * */ public void setWert(String value) { this.wert = value; } }