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