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

com.itzmeds.adfs.client.request.Header Maven / Gradle / Ivy

Go to download

Java client for authentication against active directory federation service(ADFS) - SAML,JWT,BST

The newest version!
//
// 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.16 at 07:26:35 PM IST 
//


package com.itzmeds.adfs.client.request;

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 = { "to", "security", "action" }) @XmlRootElement(name = "Header") public class Header { @XmlElement(name = "To", namespace = "http://www.w3.org/2005/08/addressing", required = true) @XmlSchemaType(name = "anyURI") protected String to; @XmlElement(name = "Security", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", required = true) protected Security security; @XmlElement(name = "Action", namespace = "http://www.w3.org/2005/08/addressing", required = true) @XmlSchemaType(name = "anyURI") protected String action; /** * Gets the value of the to property. * * @return * possible object is * {@link String } * */ public String getTo() { return to; } /** * Sets the value of the to property. * * @param value * allowed object is * {@link String } * */ public void setTo(String value) { this.to = value; } /** * Gets the value of the security property. * * @return * possible object is * {@link Security } * */ public Security getSecurity() { return security; } /** * Sets the value of the security property. * * @param value * allowed object is * {@link Security } * */ public void setSecurity(Security value) { this.security = value; } /** * Gets the value of the action property. * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * Sets the value of the action property. * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy