KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > plugin > ChangeEndPointAction


1 /*
2  * ChangeEndPointAction.java
3  *
4  * Created on March 8, 2002, 1:41 AM
5  */

6
7 package com.quikj.application.web.talk.plugin;
8
9 import com.quikj.server.web.*;
10
11 /**
12  *
13  * @author amit
14  */

15 public class ChangeEndPointAction implements EndPointActionInterface
16 {
17     
18     /** Creates a new instance of ChangeEndPointAction */
19     public ChangeEndPointAction (long session, EndPointInterface to_end_point)
20     {
21         sessionId = session;
22         endPoint = to_end_point;
23     }
24     
25     public long getSessionId()
26     {
27         return sessionId;
28     }
29     
30     public EndPointInterface getEndPoint()
31     {
32         return endPoint;
33     }
34     
35     private long sessionId;
36     private EndPointInterface endPoint;
37 }
38
Popular Tags