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

com.itzmeds.adfs.client.response.jwt.Body 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 = "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