1
2
3
4
5
6
7 package org.asyrinx.joey.hibernate.seasar.filter;
8
9 import org.seasar.hibernate.S2Session;
10
11 /***
12 * @author takeshi
13 */
14 public class RequestS2SessionFactoryImpl implements RequestS2SessionFactory {
15
16 public RequestS2SessionFactoryImpl() {
17 super();
18 }
19
20 private S2Session session = null;
21
22
23
24
25
26
27 public void setSession(S2Session session) {
28 this.session = session;
29 }
30
31
32
33
34
35
36 public S2Session getSession() {
37 return this.session;
38 }
39
40 }