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

javax.servlet.SessionCookieConfig Maven / Gradle / Ivy

There is a newer version: 3.0.20100224
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 1997-2008 Sun Microsystems, Inc. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 *
 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
 *
 */

package javax.servlet;

/**
 * Class that may be used to configure various properties of cookies 
 * used for session tracking purposes.
 *
 * 

An instance of this class is acquired by a call to * {@link ServletContext#getSessionCookieConfig}. * * @since Servlet 3.0 */ public interface SessionCookieConfig { /** * Sets the name that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * *

NOTE: Changing the name of session tracking cookies may break * other tiers (for example, a load balancing frontend) that assume * the cookie name to be equal to the default JSESSIONID, * and therefore should only be done cautiously. * * @param name the cookie name to use * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized */ public void setName(String name); /** * Gets the name that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * *

By default, JSESSIONID will be used as the cookie name. * * @return the cookie name set via {@link #setName}, or * null if {@link #setName} was never called * * @see javax.servlet.http.Cookie#getName() */ public String getName(); /** * Sets the domain name that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * * @param domain the cookie domain to use * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized * * @see javax.servlet.http.Cookie#setDomain(String) */ public void setDomain(String domain); /** * Gets the domain name that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * * @return the cookie domain set via {@link #setDomain}, or * null if {@link #setDomain} was never called * * @see javax.servlet.http.Cookie#getDomain() */ public String getDomain(); /** * Sets the path that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * * @param path the cookie path to use * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized * * @see javax.servlet.http.Cookie#setPath(String) */ public void setPath(String path); /** * Gets the path that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * *

By default, the context path of the ServletContext * from which this SessionCookieConfig was acquired will * be used. * * @return the cookie path set via {@link #setPath}, or null * if {@link #setPath} was never called * * @see javax.servlet.http.Cookie#getPath() */ public String getPath(); /** * Sets the comment that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * * @param comment the cookie comment to use * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized * * @see javax.servlet.http.Cookie#setComment(String) */ public void setComment(String comment); /** * Gets the comment that will be assigned to any session tracking * cookies created on behalf of the ServletContext from * which this SessionCookieConfig was acquired. * * @return the cookie comment set via {@link #setComment}, or * null if {@link #setComment} was never called * * @see javax.servlet.http.Cookie#getComment() */ public String getComment(); /** * Marks or unmarks the session tracking cookies created on behalf * of the ServletContext from which this * SessionCookieConfig was acquired as HttpOnly. * *

A cookie is marked as HttpOnly by adding the * HttpOnly attribute to it. HttpOnly cookies are * not supposed to be exposed to client-side scripting code, and may * therefore help mitigate certain kinds of cross-site scripting * attacks. * * @param httpOnly true if the session tracking cookies created * on behalf of the ServletContext from which this * SessionCookieConfig was acquired shall be marked as * HttpOnly, false otherwise * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized * * @see javax.servlet.http.Cookie#setHttpOnly(boolean) */ public void setHttpOnly(boolean httpOnly); /** * Checks if the session tracking cookies created on behalf of the * ServletContext from which this SessionCookieConfig * was acquired will be marked as HttpOnly. * * @return true if the session tracking cookies created on behalf of the * ServletContext from which this SessionCookieConfig * was acquired will be marked as HttpOnly, false otherwise * * @see javax.servlet.http.Cookie#isHttpOnly() */ public boolean isHttpOnly(); /** * Marks or unmarks the session tracking cookies created on behalf of the * ServletContext from which this SessionCookieConfig * was acquired as secure. * *

One use case for marking a session tracking cookie as * secure, even though the request that initiated the session * came over HTTP, is to support a topology where the web container is * front-ended by an SSL offloading load balancer. * In this case, the traffic between the client and the load balancer * will be over HTTPS, whereas the traffic between the load balancer * and the web container will be over HTTP. * * @param secure true if the session tracking cookies created on * behalf of the ServletContext from which this * SessionCookieConfig was acquired shall be marked as * secure even if the request that initiated the corresponding * session is using plain HTTP instead of HTTPS, and false if they * shall be marked as secure only if the request that initiated * the corresponding session was also secure * * @throws IllegalStateException if the ServletContext * from which this SessionCookieConfig was acquired has * already been initialized * * @see javax.servlet.http.Cookie#setSecure(boolean) * @see ServletRequest#isSecure() */ public void setSecure(boolean secure); /** * Checks if the session tracking cookies created on behalf of the * ServletContext from which this SessionCookieConfig * was acquired will be marked as secure even if the request * that initiated the corresponding session is using plain HTTP * instead of HTTPS. * * @return true if the session tracking cookies created on behalf of the * ServletContext from which this SessionCookieConfig * was acquired will be marked as secure even if the request * that initiated the corresponding session is using plain HTTP * instead of HTTPS, and false if they will be marked as secure * only if the request that initiated the corresponding session was * also secure * * @see javax.servlet.http.Cookie#getSecure() * @see ServletRequest#isSecure() */ public boolean isSecure(); /** * Sets the lifetime (in seconds) for the session tracking cookies * created on behalf of the ServletContext from which this * SessionCookieConfig was acquired. * * @param maxAge the lifetime (in seconds) of the session tracking * cookies created on behalf of the ServletContext from which * this SessionCookieConfig was acquired. * * @see javax.servlet.http.Cookie#setMaxAge */ public void setMaxAge(int maxAge); /** * Gets the lifetime (in seconds) of the session tracking cookies * created on behalf of the ServletContext from which this * SessionCookieConfig was acquired. * *

By default, -1 is returned. * * @return the lifetime (in seconds) of the session tracking * cookies created on behalf of the ServletContext from which * this SessionCookieConfig was acquired, or -1 (the * default) * * @see javax.servlet.http.Cookie#getMaxAge */ public int getMaxAge(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy