KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > applications > webtalk > model > GroupElement


1 /*
2  * GroupElement.java
3  *
4  * Created on May 13, 2003, 10:59 AM
5  */

6
7 package com.quikj.application.communicator.applications.webtalk.model;
8
9 /**
10  *
11  * @author bhm
12  */

13 public class GroupElement
14 {
15     
16     public static final int NOTIFY_NONE = 0;
17     public static final int NOTIFY_OWNER = 1;
18     public static final int NOTIFY_MEMBERS = 2;
19     public static final int NOTIFY_ALL = 3;
20  
21     
22     /** Holds value of property name. */
23     private String JavaDoc name;
24     
25     /** Holds value of property memberLoginNotificationControl. */
26     private int memberLoginNotificationControl;
27     
28     /** Holds value of property memberBusyNotificationControl. */
29     private int memberBusyNotificationControl;
30     
31     /** Holds value of property ownerLoginNotificationControl. */
32     private int ownerLoginNotificationControl;
33     
34     /** Holds value of property ownerBusyNotificationControl. */
35     private int ownerBusyNotificationControl;
36     
37     /** Holds value of property domain. */
38     private String JavaDoc domain;
39     
40     /** Creates a new instance of GroupElement */
41     public GroupElement()
42     {
43     }
44     
45     /** Getter for property name.
46      * @return Value of property name.
47      *
48      */

49     public String JavaDoc getName()
50     {
51         return this.name;
52     }
53     
54     /** Setter for property name.
55      * @param name New value of property name.
56      *
57      */

58     public void setName(String JavaDoc name)
59     {
60         this.name = name;
61     }
62     
63     /** Getter for property memberLoginNotificationControl.
64      * @return Value of property memberLoginNotificationControl.
65      *
66      */

67     public int getMemberLoginNotificationControl()
68     {
69         return this.memberLoginNotificationControl;
70     }
71     
72     /** Setter for property memberLoginNotificationControl.
73      * @param memberLoginNotificationControl New value of property memberLoginNotificationControl.
74      *
75      */

76     public void setMemberLoginNotificationControl(int memberLoginNotificationControl)
77     {
78         this.memberLoginNotificationControl = memberLoginNotificationControl;
79     }
80     
81     /** Getter for property memberBusyNotificationControl.
82      * @return Value of property memberBusyNotificationControl.
83      *
84      */

85     public int getMemberBusyNotificationControl()
86     {
87         return this.memberBusyNotificationControl;
88     }
89     
90     /** Setter for property memberBusyNotificationControl.
91      * @param memberBusyNotificationControl New value of property memberBusyNotificationControl.
92      *
93      */

94     public void setMemberBusyNotificationControl(int memberBusyNotificationControl)
95     {
96         this.memberBusyNotificationControl = memberBusyNotificationControl;
97     }
98     
99     /** Getter for property ownerLoginNotificationControl.
100      * @return Value of property ownerLoginNotificationControl.
101      *
102      */

103     public int getOwnerLoginNotificationControl()
104     {
105         return this.ownerLoginNotificationControl;
106     }
107     
108     /** Setter for property ownerLoginNotificationControl.
109      * @param ownerLoginNotificationControl New value of property ownerLoginNotificationControl.
110      *
111      */

112     public void setOwnerLoginNotificationControl(int ownerLoginNotificationControl)
113     {
114         this.ownerLoginNotificationControl = ownerLoginNotificationControl;
115     }
116     
117     /** Getter for property ownerBusyNotificationControl.
118      * @return Value of property ownerBusyNotificationControl.
119      *
120      */

121     public int getOwnerBusyNotificationControl()
122     {
123         return this.ownerBusyNotificationControl;
124     }
125     
126     /** Setter for property ownerBusyNotificationControl.
127      * @param ownerBusyNotificationControl New value of property ownerBusyNotificationControl.
128      *
129      */

130     public void setOwnerBusyNotificationControl(int ownerBusyNotificationControl)
131     {
132         this.ownerBusyNotificationControl = ownerBusyNotificationControl;
133     }
134     
135     /** Getter for property domain.
136      * @return Value of property domain.
137      *
138      */

139     public String JavaDoc getDomain()
140     {
141         return this.domain;
142     }
143     
144     /** Setter for property domain.
145      * @param domain New value of property domain.
146      *
147      */

148     public void setDomain(String JavaDoc domain)
149     {
150         this.domain = domain;
151     }
152     
153 }
154
Popular Tags