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

com.scene7.ipsapi.common.AuthHeader Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi.common;

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.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">
 *       <all>
 *         <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="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="appName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="appVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <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"/>
 *       </all>
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "authHeader") public class AuthHeader { protected String user; protected String password; protected String accessToken; protected String locale; protected String appName; protected String appVersion; protected Boolean gzipResponse; 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 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy