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; /** * Informationen über einen Mandanten, den das Registerverfahren verwaltet. * *

Java class for TMandant complex type. * *

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

 * <complexType name="TMandant">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MandantID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="StAmtNummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="TestMandant" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TMandant", propOrder = { "bezeichnung", "mandantID", "stAmtNummer", "testMandant" }) public class TMandant { @XmlElement(name = "Bezeichnung", required = true) protected String bezeichnung; @XmlElement(name = "MandantID", required = true) protected String mandantID; @XmlElement(name = "StAmtNummer", required = true) protected String stAmtNummer; @XmlElement(name = "TestMandant") protected boolean testMandant; /** * 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 mandantID property. * * @return * possible object is * {@link String } * */ public String getMandantID() { return mandantID; } /** * Sets the value of the mandantID property. * * @param value * allowed object is * {@link String } * */ public void setMandantID(String value) { this.mandantID = value; } /** * Gets the value of the stAmtNummer property. * * @return * possible object is * {@link String } * */ public String getStAmtNummer() { return stAmtNummer; } /** * Sets the value of the stAmtNummer property. * * @param value * allowed object is * {@link String } * */ public void setStAmtNummer(String value) { this.stAmtNummer = value; } /** * Gets the value of the testMandant property. * */ public boolean isTestMandant() { return testMandant; } /** * Sets the value of the testMandant property. * */ public void setTestMandant(boolean value) { this.testMandant = value; } }