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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.SessionSettings Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for SessionSettings complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SessionSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="disableTimeoutWarning" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableCSRFOnGet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableCSRFOnPost" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableCacheAndAutocomplete" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableClickjackNonsetupSFDC" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableClickjackNonsetupUser" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableClickjackSetup" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="enableSMSIdentity" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="forceRelogin" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="lockSessionsToIp" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sessionTimeout" type="{http://soap.sforce.com/2006/04/metadata}SessionTimeout" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SessionSettings", propOrder = { "disableTimeoutWarning", "enableCSRFOnGet", "enableCSRFOnPost", "enableCacheAndAutocomplete", "enableClickjackNonsetupSFDC", "enableClickjackNonsetupUser", "enableClickjackSetup", "enableSMSIdentity", "forceRelogin", "lockSessionsToIp", "sessionTimeout" }) public class SessionSettings { protected Boolean disableTimeoutWarning; protected Boolean enableCSRFOnGet; protected Boolean enableCSRFOnPost; protected Boolean enableCacheAndAutocomplete; protected Boolean enableClickjackNonsetupSFDC; protected Boolean enableClickjackNonsetupUser; protected Boolean enableClickjackSetup; protected Boolean enableSMSIdentity; protected Boolean forceRelogin; protected Boolean lockSessionsToIp; protected SessionTimeout sessionTimeout; /** * Gets the value of the disableTimeoutWarning property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDisableTimeoutWarning() { return disableTimeoutWarning; } /** * Sets the value of the disableTimeoutWarning property. * * @param value * allowed object is * {@link Boolean } * */ public void setDisableTimeoutWarning(Boolean value) { this.disableTimeoutWarning = value; } /** * Gets the value of the enableCSRFOnGet property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableCSRFOnGet() { return enableCSRFOnGet; } /** * Sets the value of the enableCSRFOnGet property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableCSRFOnGet(Boolean value) { this.enableCSRFOnGet = value; } /** * Gets the value of the enableCSRFOnPost property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableCSRFOnPost() { return enableCSRFOnPost; } /** * Sets the value of the enableCSRFOnPost property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableCSRFOnPost(Boolean value) { this.enableCSRFOnPost = value; } /** * Gets the value of the enableCacheAndAutocomplete property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableCacheAndAutocomplete() { return enableCacheAndAutocomplete; } /** * Sets the value of the enableCacheAndAutocomplete property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableCacheAndAutocomplete(Boolean value) { this.enableCacheAndAutocomplete = value; } /** * Gets the value of the enableClickjackNonsetupSFDC property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableClickjackNonsetupSFDC() { return enableClickjackNonsetupSFDC; } /** * Sets the value of the enableClickjackNonsetupSFDC property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableClickjackNonsetupSFDC(Boolean value) { this.enableClickjackNonsetupSFDC = value; } /** * Gets the value of the enableClickjackNonsetupUser property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableClickjackNonsetupUser() { return enableClickjackNonsetupUser; } /** * Sets the value of the enableClickjackNonsetupUser property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableClickjackNonsetupUser(Boolean value) { this.enableClickjackNonsetupUser = value; } /** * Gets the value of the enableClickjackSetup property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableClickjackSetup() { return enableClickjackSetup; } /** * Sets the value of the enableClickjackSetup property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableClickjackSetup(Boolean value) { this.enableClickjackSetup = value; } /** * Gets the value of the enableSMSIdentity property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEnableSMSIdentity() { return enableSMSIdentity; } /** * Sets the value of the enableSMSIdentity property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnableSMSIdentity(Boolean value) { this.enableSMSIdentity = value; } /** * Gets the value of the forceRelogin property. * * @return * possible object is * {@link Boolean } * */ public Boolean isForceRelogin() { return forceRelogin; } /** * Sets the value of the forceRelogin property. * * @param value * allowed object is * {@link Boolean } * */ public void setForceRelogin(Boolean value) { this.forceRelogin = value; } /** * Gets the value of the lockSessionsToIp property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLockSessionsToIp() { return lockSessionsToIp; } /** * Sets the value of the lockSessionsToIp property. * * @param value * allowed object is * {@link Boolean } * */ public void setLockSessionsToIp(Boolean value) { this.lockSessionsToIp = value; } /** * Gets the value of the sessionTimeout property. * * @return * possible object is * {@link SessionTimeout } * */ public SessionTimeout getSessionTimeout() { return sessionTimeout; } /** * Sets the value of the sessionTimeout property. * * @param value * allowed object is * {@link SessionTimeout } * */ public void setSessionTimeout(SessionTimeout value) { this.sessionTimeout = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy