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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Gemeinsame Informationen aller fachspezifischer Exceptions. * *

Java class for TStandardExceptionInfo complex type. * *

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

 * <complexType name="TStandardExceptionInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Methode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Aufrufer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ServerInfo" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TServerInfo"/>
 *         <element name="InterneBezeichnung" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Fehlerbeschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TStandardExceptionInfo", propOrder = { "methode", "aufrufer", "serverInfo", "interneBezeichnung", "fehlerbeschreibung" }) @XmlSeeAlso({ SemanticExceptionInfo.class, YearCompletedExceptionInfo.class, StillgelegtExceptionInfo.class, LockedExceptionInfo.class, TechnicalExceptionInfo.class, NacherfassungCompletedExceptionInfo.class, NotLockedExceptionInfo.class, EintragExistsExceptionInfo.class, NotAuthorizedExceptionInfo.class, NacherfassungNotYetCompletedExceptionInfo.class, CredentialInvalidExceptionInfo.class, YearNotCompletedExceptionInfo.class, DuplicateUserExceptionInfo.class, NotFoundExceptionInfo.class, NotStillgelegtExceptionInfo.class }) public class TStandardExceptionInfo { @XmlElement(name = "Methode", required = true) protected String methode; @XmlElement(name = "Aufrufer", required = true) protected String aufrufer; @XmlElement(name = "ServerInfo", required = true) protected TServerInfo serverInfo; @XmlElement(name = "InterneBezeichnung", required = true) protected String interneBezeichnung; @XmlElement(name = "Fehlerbeschreibung", required = true) protected String fehlerbeschreibung; /** * Gets the value of the methode property. * * @return * possible object is * {@link String } * */ public String getMethode() { return methode; } /** * Sets the value of the methode property. * * @param value * allowed object is * {@link String } * */ public void setMethode(String value) { this.methode = value; } /** * Gets the value of the aufrufer property. * * @return * possible object is * {@link String } * */ public String getAufrufer() { return aufrufer; } /** * Sets the value of the aufrufer property. * * @param value * allowed object is * {@link String } * */ public void setAufrufer(String value) { this.aufrufer = value; } /** * Gets the value of the serverInfo property. * * @return * possible object is * {@link TServerInfo } * */ public TServerInfo getServerInfo() { return serverInfo; } /** * Sets the value of the serverInfo property. * * @param value * allowed object is * {@link TServerInfo } * */ public void setServerInfo(TServerInfo value) { this.serverInfo = value; } /** * Gets the value of the interneBezeichnung property. * * @return * possible object is * {@link String } * */ public String getInterneBezeichnung() { return interneBezeichnung; } /** * Sets the value of the interneBezeichnung property. * * @param value * allowed object is * {@link String } * */ public void setInterneBezeichnung(String value) { this.interneBezeichnung = value; } /** * Gets the value of the fehlerbeschreibung property. * * @return * possible object is * {@link String } * */ public String getFehlerbeschreibung() { return fehlerbeschreibung; } /** * Sets the value of the fehlerbeschreibung property. * * @param value * allowed object is * {@link String } * */ public void setFehlerbeschreibung(String value) { this.fehlerbeschreibung = value; } }