
com.itzmeds.adfs.client.request.Security Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-adfs-client Show documentation
Show all versions of android-adfs-client Show documentation
Android java client for authentication against active directory federation service(ADFS) - JWT,BST
The newest version!
package com.itzmeds.adfs.client.request;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
@Root(name = "Security")
public class Security {
@Element(name = "wsse:UsernameToken", required = true)
protected UsernameToken usernameToken;
/**
* Gets the value of the usernameToken property.
*
* @return possible object is {@link UsernameToken }
*
*/
public UsernameToken getUsernameToken() {
return usernameToken;
}
/**
* Sets the value of the usernameToken property.
*
* @param value
* allowed object is {@link UsernameToken }
*
*/
public void setUsernameToken(UsernameToken value) {
this.usernameToken = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy