
com.itzmeds.adfs.client.response.jwt.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.response.jwt;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
@Root(name = "s:Body")
public class Body {
@Element(name = "trust:RequestSecurityTokenResponseCollection", required = true)
protected RequestSecurityTokenResponseCollection requestSecurityTokenResponseCollection;
/**
* Gets the value of the requestSecurityTokenResponseCollection property.
*
* @return possible object is {@link RequestSecurityTokenResponseCollection }
*
*/
public RequestSecurityTokenResponseCollection getRequestSecurityTokenResponseCollection() {
return requestSecurityTokenResponseCollection;
}
/**
* Sets the value of the requestSecurityTokenResponseCollection property.
*
* @param value
* allowed object is {@link RequestSecurityTokenResponseCollection }
*
*/
public void setRequestSecurityTokenResponseCollection(RequestSecurityTokenResponseCollection value) {
this.requestSecurityTokenResponseCollection = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy