View Javadoc
1   /*
2    *    Copyright 2009-2022 the original author or authors.
3    *
4    *    Licensed under the Apache License, Version 2.0 (the "License");
5    *    you may not use this file except in compliance with the License.
6    *    You may obtain a copy of the License at
7    *
8    *       https://www.apache.org/licenses/LICENSE-2.0
9    *
10   *    Unless required by applicable law or agreed to in writing, software
11   *    distributed under the License is distributed on an "AS IS" BASIS,
12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *    See the License for the specific language governing permissions and
14   *    limitations under the License.
15   */
16  package org.apache.ibatis.domain.jpetstore;
17  
18  import java.io.Serializable;
19  
20  public class Account implements Serializable {
21  
22    private static final long serialVersionUID = 1L;
23  
24    private String username;
25    private String password;
26    private String email;
27    private String firstName;
28    private String lastName;
29    private String status;
30    private String address1;
31    private String address2;
32    private String city;
33    private String state;
34    private String zip;
35    private String country;
36    private String phone;
37    private String favouriteCategoryId;
38    private String languagePreference;
39    private boolean listOption;
40    private boolean bannerOption;
41    private String bannerName;
42  
43    public String getUsername() {
44      return username;
45    }
46  
47    public void setUsername(String username) {
48      this.username = username;
49    }
50  
51    public String getPassword() {
52      return password;
53    }
54  
55    public void setPassword(String password) {
56      this.password = password;
57    }
58  
59    public String getEmail() {
60      return email;
61    }
62  
63    public void setEmail(String email) {
64      this.email = email;
65    }
66  
67    public String getFirstName() {
68      return firstName;
69    }
70  
71    public void setFirstName(String firstName) {
72      this.firstName = firstName;
73    }
74  
75    public String getLastName() {
76      return lastName;
77    }
78  
79    public void setLastName(String lastName) {
80      this.lastName = lastName;
81    }
82  
83    public String getStatus() {
84      return status;
85    }
86  
87    public void setStatus(String status) {
88      this.status = status;
89    }
90  
91    public String getAddress1() {
92      return address1;
93    }
94  
95    public void setAddress1(String address1) {
96      this.address1 = address1;
97    }
98  
99    public String getAddress2() {
100     return address2;
101   }
102 
103   public void setAddress2(String address2) {
104     this.address2 = address2;
105   }
106 
107   public String getCity() {
108     return city;
109   }
110 
111   public void setCity(String city) {
112     this.city = city;
113   }
114 
115   public String getState() {
116     return state;
117   }
118 
119   public void setState(String state) {
120     this.state = state;
121   }
122 
123   public String getZip() {
124     return zip;
125   }
126 
127   public void setZip(String zip) {
128     this.zip = zip;
129   }
130 
131   public String getCountry() {
132     return country;
133   }
134 
135   public void setCountry(String country) {
136     this.country = country;
137   }
138 
139   public String getPhone() {
140     return phone;
141   }
142 
143   public void setPhone(String phone) {
144     this.phone = phone;
145   }
146 
147   public String getFavouriteCategoryId() {
148     return favouriteCategoryId;
149   }
150 
151   public void setFavouriteCategoryId(String favouriteCategoryId) {
152     this.favouriteCategoryId = favouriteCategoryId;
153   }
154 
155   public String getLanguagePreference() {
156     return languagePreference;
157   }
158 
159   public void setLanguagePreference(String languagePreference) {
160     this.languagePreference = languagePreference;
161   }
162 
163   public boolean isListOption() {
164     return listOption;
165   }
166 
167   public void setListOption(boolean listOption) {
168     this.listOption = listOption;
169   }
170 
171   public boolean isBannerOption() {
172     return bannerOption;
173   }
174 
175   public void setBannerOption(boolean bannerOption) {
176     this.bannerOption = bannerOption;
177   }
178 
179   public String getBannerName() {
180     return bannerName;
181   }
182 
183   public void setBannerName(String bannerName) {
184     this.bannerName = bannerName;
185   }
186 
187 }