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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/WSRegister/v1}TStandardExceptionInfo">
 *       <sequence>
 *         <element name="SperreDurch" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sperreDurch" }) @XmlRootElement(name = "LockedExceptionInfo") public class LockedExceptionInfo extends TStandardExceptionInfo { @XmlElement(name = "SperreDurch", required = true) protected String sperreDurch; /** * Gets the value of the sperreDurch property. * * @return * possible object is * {@link String } * */ public String getSperreDurch() { return sperreDurch; } /** * Sets the value of the sperreDurch property. * * @param value * allowed object is * {@link String } * */ public void setSperreDurch(String value) { this.sperreDurch = value; } }