View Javadoc

1   /*
2    * Copyright (C) 2007 Alf Mikula
3    * 
4    * This file is part of PromoteGo.
5    *
6    * PromoteGo is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU General Public License as published by
8    * the Free Software Foundation, either version 3 of the License, or
9    * (at your option) any later version.
10   *
11   * PromoteGo is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.
15   *
16   * You should have received a copy of the GNU General Public License
17   * along with PromoteGo.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.promotego.viewbeans;
20  
21  public class UserInfoBean
22  {
23      private String m_firstName;
24      private String m_lastName;
25      private String m_emailAddress;
26      private String m_username;
27      private String m_password;
28      private String m_confirmPassword;
29      private String m_streetAddress;
30      private String m_city;
31      private String m_state;
32      private String m_zip;
33  
34      public String getCity()
35      {
36          return m_city;
37      }
38  
39      public void setCity(String city)
40      {
41          m_city = city;
42      }
43  
44      public String getConfirmPassword()
45      {
46          return m_confirmPassword;
47      }
48  
49      public void setConfirmPassword(String confirmPassword)
50      {
51          m_confirmPassword = confirmPassword;
52      }
53  
54      public String getEmailAddress()
55      {
56          return m_emailAddress;
57      }
58  
59      public void setEmailAddress(String emailAddress)
60      {
61          m_emailAddress = emailAddress;
62      }
63  
64      public String getFirstName()
65      {
66          return m_firstName;
67      }
68  
69      public void setFirstName(String firstName)
70      {
71          m_firstName = firstName;
72      }
73  
74      public String getLastName()
75      {
76          return m_lastName;
77      }
78  
79      public void setLastName(String lastName)
80      {
81          m_lastName = lastName;
82      }
83  
84      public String getPassword()
85      {
86          return m_password;
87      }
88  
89      public void setPassword(String password)
90      {
91          m_password = password;
92      }
93  
94      public String getState()
95      {
96          return m_state;
97      }
98  
99      public void setState(String state)
100     {
101         m_state = state;
102     }
103 
104     public String getStreetAddress()
105     {
106         return m_streetAddress;
107     }
108 
109     public void setStreetAddress(String streetAddress)
110     {
111         m_streetAddress = streetAddress;
112     }
113 
114     public String getUsername()
115     {
116         return m_username;
117     }
118 
119     public void setUsername(String username)
120     {
121         m_username = username;
122     }
123 
124     public String getZip()
125     {
126         return m_zip;
127     }
128 
129     public void setZip(String zip)
130     {
131         m_zip = zip;
132     }
133 }