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="CredentialMustBeRenewed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "credentialMustBeRenewed" }) @XmlRootElement(name = "CredentialInvalidExceptionInfo") public class CredentialInvalidExceptionInfo extends TStandardExceptionInfo { @XmlElement(name = "CredentialMustBeRenewed") protected boolean credentialMustBeRenewed; /** * Gets the value of the credentialMustBeRenewed property. * */ public boolean isCredentialMustBeRenewed() { return credentialMustBeRenewed; } /** * Sets the value of the credentialMustBeRenewed property. * */ public void setCredentialMustBeRenewed(boolean value) { this.credentialMustBeRenewed = value; } }