package org.cagrid.gaards.authentication.lockout; import java.io.Serializable; import java.util.Calendar; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.w3._2001.xmlschema.Adapter1; /** * <p>Java class for LockedUserInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LockedUserInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="userId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="until" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LockedUserInfo") public class LockedUserInfo implements Serializable { @XmlAttribute(name = "userId", namespace = "http://gaards.cagrid.org/authentication/lockout", required = true) protected String userId; @XmlAttribute(name = "until", namespace = "http://gaards.cagrid.org/authentication/lockout", required = true) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Calendar until; /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the until property. * * @return * possible object is * {@link String } * */ public Calendar getUntil() { return until; } /** * Sets the value of the until property. * * @param value * allowed object is * {@link String } * */ public void setUntil(Calendar value) { this.until = value; } }