package at.gv.util.xsd.mis.usp_v2.eai.token; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; /** *

Java-Klasse für ModificationTokenType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ModificationTokenType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="IssuedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="ValidUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <anyAttribute/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ModificationTokenType", propOrder = { "value" }) public class ModificationTokenType { @XmlValue protected String value; @XmlAttribute(name = "IssuedAt") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar issuedAt; @XmlAttribute(name = "ValidUntil") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar validUntil; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der value-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Ruft den Wert der issuedAt-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getIssuedAt() { return issuedAt; } /** * Legt den Wert der issuedAt-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setIssuedAt(XMLGregorianCalendar value) { this.issuedAt = value; } /** * Ruft den Wert der validUntil-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValidUntil() { return validUntil; } /** * Legt den Wert der validUntil-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setValidUntil(XMLGregorianCalendar value) { this.validUntil = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }