
com.itzmeds.adfs.client.response.jwt.BinarySecurityTokenWrapper 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 = "RequestedSecurityToken")
public class BinarySecurityTokenWrapper {
@Element(name = "BinarySecurityToken", required = true)
protected BinarySecurityToken binarySecurityToken;
/**
* Gets the value of the binarySecurityToken property.
*
* @return possible object is {@link BinarySecurityToken }
*
*/
public BinarySecurityToken getBinarySecurityToken() {
return binarySecurityToken;
}
/**
* Sets the value of the binarySecurityToken property.
*
* @param value
* allowed object is {@link BinarySecurityToken }
*
*/
public void setBinarySecurityToken(BinarySecurityToken value) {
this.binarySecurityToken = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy