All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itzmeds.adfs.client.response.jwt.EndpointReference Maven / Gradle / Ivy

Go to download

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