com.itzmeds.adfs.client.response.jwt.Body Maven / Gradle / Ivy
Show all versions of adfs-auth-client Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.03.19 at 09:00:41 PM IST
//
package com.itzmeds.adfs.client.response.jwt;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"requestSecurityTokenResponseCollection"
})
@XmlRootElement(name = "Body", namespace = "http://www.w3.org/2003/05/soap-envelope")
public class Body {
@XmlElement(name = "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;
}
}