KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * RestrictedAccessUserElement.java
3  *
4  * Created on June 7, 2003, 12:57 PM
5  */

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

14 public class RestrictedAccessUserElement
15 {
16     
17     /** Holds value of property name. */
18     private String JavaDoc name;
19     
20     /** Holds value of property password. */
21     private String JavaDoc password;
22     
23     /** Holds value of property fullName. */
24     private String JavaDoc fullName;
25     
26     /** Holds value of property email. */
27     private String JavaDoc email;
28     
29     /** Holds value of property additionalInfo. */
30     private String JavaDoc additionalInfo;
31     
32     /** Holds value of property infoParms. */
33     private HashMap infoParms;
34     
35     /** Creates a new instance of RestrictedAccessUserElement */
36     public RestrictedAccessUserElement()
37     {
38     }
39     
40     /** Getter for property name.
41      * @return Value of property name.
42      *
43      */

44     public String JavaDoc getName()
45     {
46         return this.name;
47     }
48     
49     /** Setter for property name.
50      * @param name New value of property name.
51      *
52      */

53     public void setName(String JavaDoc name)
54     {
55         this.name = name;
56     }
57     
58     /** Getter for property password.
59      * @return Value of property password.
60      *
61      */

62     public String JavaDoc getPassword()
63     {
64         return this.password;
65     }
66     
67     /** Setter for property password.
68      * @param password New value of property password.
69      *
70      */

71     public void setPassword(String JavaDoc password)
72     {
73         this.password = password;
74     }
75     
76     /** Getter for property fullName.
77      * @return Value of property fullName.
78      *
79      */

80     public String JavaDoc getFullName()
81     {
82         return this.fullName;
83     }
84     
85     /** Setter for property fullName.
86      * @param fullName New value of property fullName.
87      *
88      */

89     public void setFullName(String JavaDoc fullName)
90     {
91         this.fullName = fullName;
92     }
93     
94     /** Getter for property email.
95      * @return Value of property email.
96      *
97      */

98     public String JavaDoc getEmail()
99     {
100         return this.email;
101     }
102     
103     /** Setter for property email.
104      * @param email New value of property email.
105      *
106      */

107     public void setEmail(String JavaDoc email)
108     {
109         this.email = email;
110     }
111     
112     /** Getter for property additionalInfo.
113      * @return Value of property additionalInfo.
114      *
115      */

116     public String JavaDoc getAdditionalInfo()
117     {
118         return this.additionalInfo;
119     }
120     
121     /** Setter for property additionalInfo.
122      * @param additionalInfo New value of property additionalInfo.
123      *
124      */

125     public void setAdditionalInfo(String JavaDoc additionalInfo)
126     {
127         this.additionalInfo = additionalInfo;
128     }
129     
130     /** Getter for property infoParms.
131      * @return Value of property infoParms.
132      *
133      */

134     public HashMap getInfoParms()
135     {
136         return this.infoParms;
137     }
138     
139     /** Setter for property infoParms.
140      * @param infoParms New value of property infoParms.
141      *
142      */

143     public void setInfoParms(HashMap infoParms)
144     {
145         this.infoParms = infoParms;
146     }
147     
148 }
149
Popular Tags