package org.rasea.agent.demoiselle.internal.proxy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for userType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="userType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="alternateEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "userType", propOrder = { "name", "displayName", "email", "alternateEmail", "enabled" }) public class UserType { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String displayName; protected String email; protected String alternateEmail; protected boolean enabled; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the alternateEmail property. * * @return * possible object is * {@link String } * */ public String getAlternateEmail() { return alternateEmail; } /** * Sets the value of the alternateEmail property. * * @param value * allowed object is * {@link String } * */ public void setAlternateEmail(String value) { this.alternateEmail = value; } /** * Gets the value of the enabled property. * */ public boolean isEnabled() { return enabled; } /** * Sets the value of the enabled property. * */ public void setEnabled(boolean value) { this.enabled = value; } }