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 userRoleRequest complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="userRoleRequest"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="applicationName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="roleName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "userRoleRequest", propOrder = { "applicationName", "roleName", "username" }) public class UserRoleRequest { @XmlElement(required = true) protected String applicationName; @XmlElement(required = true) protected String roleName; @XmlElement(required = true) protected String username; /** * Gets the value of the applicationName property. * * @return * possible object is * {@link String } * */ public String getApplicationName() { return applicationName; } /** * Sets the value of the applicationName property. * * @param value * allowed object is * {@link String } * */ public void setApplicationName(String value) { this.applicationName = value; } /** * Gets the value of the roleName property. * * @return * possible object is * {@link String } * */ public String getRoleName() { return roleName; } /** * Sets the value of the roleName property. * * @param value * allowed object is * {@link String } * */ public void setRoleName(String value) { this.roleName = value; } /** * Gets the value of the username property. * * @return * possible object is * {@link String } * */ public String getUsername() { return username; } /** * Sets the value of the username property. * * @param value * allowed object is * {@link String } * */ public void setUsername(String value) { this.username = value; } }