com.itzmeds.adfs.client.response.saml.SecurityTokenReference 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.XmlAttribute;
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 = {
"keyIdentifier"
})
@XmlRootElement(name = "SecurityTokenReference", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd")
public class SecurityTokenReference {
@XmlElement(name = "KeyIdentifier", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", required = true)
protected KeyIdentifier keyIdentifier;
@XmlAttribute(name = "TokenType", namespace = "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", required = true)
@XmlSchemaType(name = "anyURI")
protected String tokenType;
/**
* Gets the value of the keyIdentifier property.
*
* @return
* possible object is
* {@link KeyIdentifier }
*
*/
public KeyIdentifier getKeyIdentifier() {
return keyIdentifier;
}
/**
* Sets the value of the keyIdentifier property.
*
* @param value
* allowed object is
* {@link KeyIdentifier }
*
*/
public void setKeyIdentifier(KeyIdentifier value) {
this.keyIdentifier = 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;
}
}