01: package weblogic.servlet.internal.session;
02:
03: public class SessionConfigManager {
04:
05: // === Dummy fields and methods simulating real weblogic objects ===
06:
07: public String getCookieComment() {
08: throw new AssertionError();
09: }
10:
11: public String getCookieDomain() {
12: throw new AssertionError();
13: }
14:
15: public int getCookieMaxAgeSecs() {
16: throw new AssertionError();
17: }
18:
19: public String getCookieName() {
20: throw new AssertionError();
21: }
22:
23: public String getCookiePath() {
24: throw new AssertionError();
25: }
26:
27: public boolean isCookieSecure() {
28: throw new AssertionError();
29: }
30:
31: public boolean getCookiesEnabled() {
32: throw new AssertionError();
33: }
34:
35: public int getIDLength() {
36: throw new AssertionError();
37: }
38:
39: public boolean isSessionTrackingEnabled() {
40: throw new AssertionError();
41: }
42:
43: public int getSessionTimeoutSecs() {
44: throw new AssertionError();
45: }
46:
47: public boolean isUrlRewritingEnabled() {
48: throw new AssertionError();
49: }
50:
51: public boolean isSessionCookiesEnabled() {
52: throw new AssertionError();
53: }
54:
55: }
|