net.anwiba.commons.mail.schema.account.Authentication Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.01.14 at 12:45:08 AM CET
//
package net.anwiba.commons.mail.schema.account;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Authentication complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Authentication">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="password" type="{http://www.anwiba.net/mail/account}Password"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Authentication", propOrder = {
"userName",
"password"
})
public class Authentication {
@XmlElement(required = true)
protected String userName;
@XmlElement(required = true)
protected Password password;
/**
* 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 password property.
*
* @return
* possible object is
* {@link Password }
*
*/
public Password getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link Password }
*
*/
public void setPassword(Password value) {
this.password = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy