KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > jetty > cluster > HttpSessionInvocation


1 /* JFox, the OpenSource J2EE Application Server
2  *
3  * Distributable under GNU LGPL license by gun.org
4  * more details please visit http://www.huihoo.org/jfox
5  */

6
7 package org.jfox.jetty.cluster;
8
9 import org.jfox.ioc.connector.AbstractInvocation;
10 import org.jfox.ioc.connector.ObjectId;
11
12 /**
13  * 携带 HttpSession 变化信息
14  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
15  */

16
17 public class HttpSessionInvocation extends AbstractInvocation {
18
19     private String JavaDoc sessionId = null;
20     private Integer JavaDoc methodId = null;
21
22
23     public HttpSessionInvocation(ObjectId objectId, String JavaDoc methodHash, Object JavaDoc[] args) {
24         super(objectId, methodHash, args);
25     }
26
27     public String JavaDoc getSessionId() {
28         return sessionId;
29     }
30
31     public void setSessionId(String JavaDoc sessionId) {
32         this.sessionId = sessionId;
33     }
34
35     public Integer JavaDoc getMethodId() {
36         return methodId;
37     }
38
39     public void setMethodId(Integer JavaDoc methodId) {
40         this.methodId = methodId;
41     }
42
43     public static void main(String JavaDoc[] args) {
44
45     }
46 }
47
Popular Tags