1
2
3
4
5
6
7
8
9
10
11
12
13 package org.abstracthorizon.danube.http.session;
14
15
16
17
18
19
20
21 public class SimpleSessionManagerBeanInfo extends SimpleCookieSessionManagerBeanInfo {
22
23
24
25
26 public SimpleSessionManagerBeanInfo() {
27 this(SimpleSessionManager.class);
28 }
29
30
31
32
33
34 protected SimpleSessionManagerBeanInfo(Class<?> cls) {
35 super(cls);
36 }
37
38
39
40
41 public void init() {
42 super.init();
43
44 addProperty("sessionTimeout", "SessionTtimeout");
45 addProperty("minScanInterval", "Minimal interval in milliseconds for pruning sessions from the session cache", true, false);
46 }
47
48 }
49