com.scene7.ipsapi.AuthHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
package com.scene7.ipsapi;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="accessToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="samlResponse" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="appName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="appVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="gzipResponse" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="faultHttpStatusCode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* <anyAttribute processContents='lax' namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"user",
"password",
"accessToken",
"samlResponse",
"locale",
"appName",
"appVersion",
"gzipResponse",
"faultHttpStatusCode"
})
@XmlRootElement(name = "authHeader", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class AuthHeader {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String user;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String password;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String accessToken;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String samlResponse;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String locale;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String appName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String appVersion;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean gzipResponse;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer faultHttpStatusCode;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser(String value) {
this.user = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the accessToken property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccessToken() {
return accessToken;
}
/**
* Sets the value of the accessToken property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccessToken(String value) {
this.accessToken = value;
}
/**
* Gets the value of the samlResponse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSamlResponse() {
return samlResponse;
}
/**
* Sets the value of the samlResponse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSamlResponse(String value) {
this.samlResponse = value;
}
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocale(String value) {
this.locale = value;
}
/**
* Gets the value of the appName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAppName() {
return appName;
}
/**
* Sets the value of the appName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAppName(String value) {
this.appName = value;
}
/**
* Gets the value of the appVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAppVersion() {
return appVersion;
}
/**
* Sets the value of the appVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAppVersion(String value) {
this.appVersion = value;
}
/**
* Gets the value of the gzipResponse property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGzipResponse() {
return gzipResponse;
}
/**
* Sets the value of the gzipResponse property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGzipResponse(Boolean value) {
this.gzipResponse = value;
}
/**
* Gets the value of the faultHttpStatusCode property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFaultHttpStatusCode() {
return faultHttpStatusCode;
}
/**
* Sets the value of the faultHttpStatusCode property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFaultHttpStatusCode(Integer value) {
this.faultHttpStatusCode = value;
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
}