
com.itzmeds.adfs.client.response.jwt.Header Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-adfs-client Show documentation
Show all versions of android-adfs-client Show documentation
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:Header")
public class Header {
@Element(name = "a:Action", required = true)
protected Action action;
@Element(name = "o:Security", required = true)
protected Security security;
/**
* Gets the value of the action property.
*
* @return possible object is {@link Action }
*
*/
public Action getAction() {
return action;
}
/**
* Sets the value of the action property.
*
* @param value
* allowed object is {@link Action }
*
*/
public void setAction(Action value) {
this.action = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy