KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > feature > proactive > server > UnregisteredIdentifier


1 /*
2  * UnregisteredIdentifier.java
3  *
4  * Created on April 27, 2003, 4:51 AM
5  */

6
7 package com.quikj.application.web.talk.feature.proactive.server;
8
9 /**
10  *
11  * @author amit
12  */

13 public class UnregisteredIdentifier
14 {
15     
16     /** Holds value of property group. */
17     private String JavaDoc group;
18     
19     /** Holds value of property uniqueIdentifier. */
20     private String JavaDoc uniqueIdentifier;
21     
22     /** Creates a new instance of UnregisteredIdentifier */
23     public UnregisteredIdentifier(String JavaDoc group, String JavaDoc identifier)
24     {
25         this.group = group;
26         uniqueIdentifier = identifier;
27     }
28     
29     /** Getter for property group.
30      * @return Value of property group.
31      *
32      */

33     public String JavaDoc getGroup()
34     {
35         return this.group;
36     }
37     
38     
39     /** Getter for property uniqueIdentifier.
40      * @return Value of property uniqueIdentifier.
41      *
42      */

43     public String JavaDoc getUniqueIdentifier()
44     {
45         return this.uniqueIdentifier;
46     }
47         
48 }
49
Popular Tags