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