com.itzmeds.adfs.client.response.saml.RequestSecurityTokenResponse 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.20 at 12:43:08 PM IST
//
package com.itzmeds.adfs.client.response.saml;
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.XmlSchemaType;
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 = {
"lifetime",
"appliesTo",
"requestedSecurityToken",
"requestedAttachedReference",
"requestedUnattachedReference",
"tokenType",
"requestType",
"keyType"
})
@XmlRootElement(name = "RequestSecurityTokenResponse", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")
public class RequestSecurityTokenResponse {
@XmlElement(name = "Lifetime", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
protected Lifetime lifetime;
@XmlElement(name = "AppliesTo", namespace = "http://schemas.xmlsoap.org/ws/2004/09/policy", required = true)
protected AppliesTo appliesTo;
@XmlElement(name = "RequestedSecurityToken", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
protected RequestedSecurityToken requestedSecurityToken;
@XmlElement(name = "RequestedAttachedReference", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
protected WsseSecurityTokenReference requestedAttachedReference;
@XmlElement(name = "RequestedUnattachedReference", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
protected WsseSecurityTokenReference requestedUnattachedReference;
@XmlElement(name = "TokenType", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
@XmlSchemaType(name = "anyURI")
protected String tokenType;
@XmlElement(name = "RequestType", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
@XmlSchemaType(name = "anyURI")
protected String requestType;
@XmlElement(name = "KeyType", namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512", required = true)
@XmlSchemaType(name = "anyURI")
protected String keyType;
/**
* Gets the value of the lifetime property.
*
* @return
* possible object is
* {@link Lifetime }
*
*/
public Lifetime getLifetime() {
return lifetime;
}
/**
* Sets the value of the lifetime property.
*
* @param value
* allowed object is
* {@link Lifetime }
*
*/
public void setLifetime(Lifetime value) {
this.lifetime = value;
}
/**
* Gets the value of the appliesTo property.
*
* @return
* possible object is
* {@link AppliesTo }
*
*/
public AppliesTo getAppliesTo() {
return appliesTo;
}
/**
* Sets the value of the appliesTo property.
*
* @param value
* allowed object is
* {@link AppliesTo }
*
*/
public void setAppliesTo(AppliesTo value) {
this.appliesTo = value;
}
/**
* Gets the value of the requestedSecurityToken property.
*
* @return
* possible object is
* {@link RequestedSecurityToken }
*
*/
public RequestedSecurityToken getRequestedSecurityToken() {
return requestedSecurityToken;
}
/**
* Sets the value of the requestedSecurityToken property.
*
* @param value
* allowed object is
* {@link RequestedSecurityToken }
*
*/
public void setRequestedSecurityToken(RequestedSecurityToken value) {
this.requestedSecurityToken = value;
}
/**
* Gets the value of the requestedAttachedReference property.
*
* @return
* possible object is
* {@link WsseSecurityTokenReference }
*
*/
public WsseSecurityTokenReference getRequestedAttachedReference() {
return requestedAttachedReference;
}
/**
* Sets the value of the requestedAttachedReference property.
*
* @param value
* allowed object is
* {@link WsseSecurityTokenReference }
*
*/
public void setRequestedAttachedReference(WsseSecurityTokenReference value) {
this.requestedAttachedReference = value;
}
/**
* Gets the value of the requestedUnattachedReference property.
*
* @return
* possible object is
* {@link WsseSecurityTokenReference }
*
*/
public WsseSecurityTokenReference getRequestedUnattachedReference() {
return requestedUnattachedReference;
}
/**
* Sets the value of the requestedUnattachedReference property.
*
* @param value
* allowed object is
* {@link WsseSecurityTokenReference }
*
*/
public void setRequestedUnattachedReference(WsseSecurityTokenReference value) {
this.requestedUnattachedReference = value;
}
/**
* Gets the value of the tokenType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTokenType() {
return tokenType;
}
/**
* Sets the value of the tokenType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTokenType(String value) {
this.tokenType = value;
}
/**
* Gets the value of the requestType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequestType() {
return requestType;
}
/**
* Sets the value of the requestType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequestType(String value) {
this.requestType = value;
}
/**
* Gets the value of the keyType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyType() {
return keyType;
}
/**
* Sets the value of the keyType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyType(String value) {
this.keyType = value;
}
}