KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * ConferencedEndPoints.java
3  *
4  * Created on April 14, 2002, 4:38 AM
5  */

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

16 public class ConferencedEndPoints
17 {
18     
19     private EndPointInterface endpoint = null;
20     
21     private CallPartyElement information = null;
22     
23     /** Creates a new instance of ConferencedEndPoints */
24     public ConferencedEndPoints()
25     {
26     }
27     
28     public ConferencedEndPoints(EndPointInterface ep, CallPartyElement ele)
29     {
30         endpoint = ep;
31         information = ele;
32     }
33     
34     public ConferencedEndPoints(EndPointInterface ep)
35     {
36         this (ep, null);
37     }
38     
39     /** Getter for property endpoint.
40      * @return Value of property endpoint.
41      */

42     public EndPointInterface getEndpoint()
43     {
44         return endpoint;
45     }
46     
47     /** Setter for property endpoint.
48      * @param endpoint New value of property endpoint.
49      */

50     public void setEndpoint(EndPointInterface endpoint)
51     {
52         this.endpoint = endpoint;
53     }
54     
55     /** Getter for property information.
56      * @return Value of property information.
57      */

58     public CallPartyElement getInformation()
59     {
60         return information;
61     }
62     
63     /** Setter for property information.
64      * @param information New value of property information.
65      */

66     public void setInformation(CallPartyElement information)
67     {
68         this.information = information;
69     }
70     
71 }
72
Popular Tags