org.apache.geronimo.xml.ns.security_1
public class: NamedUsernamePasswordCredentialType [javadoc |
source]
java.lang.Object
org.apache.geronimo.xml.ns.security_1.NamedUsernamePasswordCredentialType
Java class for named-username-password-credentialType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="named-username-password-credentialType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Field Summary |
|---|
| protected String | name | |
| protected String | username | |
| protected String | password | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.xml.ns.security_1.NamedUsernamePasswordCredentialType Detail: |
public String getName() {
return name;
}
Gets the value of the name property. |
public String getPassword() {
return password;
}
Gets the value of the password property. |
public String getUsername() {
return username;
}
Gets the value of the username property. |
public void setName(String value) {
this.name = value;
}
Sets the value of the name property. |
public void setPassword(String value) {
this.password = value;
}
Sets the value of the password property. |
public void setUsername(String value) {
this.username = value;
}
Sets the value of the username property. |