
com.itzmeds.adfs.client.request.Body 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 = "soap:Body")
public class Body {
@Element(name = "trust:RequestSecurityToken", required = true)
protected RequestSecurityToken requestSecurityToken;
/**
* Gets the value of the requestSecurityToken property.
*
* @return possible object is {@link RequestSecurityToken }
*
*/
public RequestSecurityToken getRequestSecurityToken() {
return requestSecurityToken;
}
/**
* Sets the value of the requestSecurityToken property.
*
* @param value
* allowed object is {@link RequestSecurityToken }
*
*/
public void setRequestSecurityToken(RequestSecurityToken value) {
this.requestSecurityToken = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy