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