01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.terracotta.session;
05:
06: import javax.servlet.http.HttpSessionAttributeListener;
07: import javax.servlet.http.HttpSessionListener;
08:
09: public interface WebAppConfig {
10:
11: HttpSessionAttributeListener[] __tc_session_getHttpSessionAttributeListeners();
12:
13: HttpSessionListener[] __tc_session_getHttpSessionListener();
14:
15: String __tc_session_getCookieDomain();
16:
17: String __tc_session_getCookieComment();
18:
19: boolean __tc_session_getCookieSecure();
20:
21: int __tc_session_getCookieMaxAgeSecs();
22:
23: String __tc_session_getCookieName();
24:
25: String __tc_session_getCookiePath();
26:
27: boolean __tc_session_getCookiesEnabled();
28:
29: int __tc_session_getIdLength();
30:
31: int __tc_session_getSessionTimeoutSecs();
32:
33: boolean __tc_session_getTrackingEnabled();
34:
35: boolean __tc_session_getURLRewritingEnabled();
36:
37: String __tc_session_getServerId();
38:
39: String __tc_session_getSessionDelimiter();
40:
41: }
|