View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
4   */
5   package com.hack23.cia.model.sweden.impl;
6   
7   import java.io.Serializable;
8   import java.util.ArrayList;
9   import java.util.List;
10  
11  /***
12   * The Class RegisterInformation.
13   */
14  public class RegisterInformation implements Serializable {
15  
16      /*** The Constant serialVersionUID. */
17  	private static final long serialVersionUID = 1551456381369005380L;
18  
19  	/*** The agreements. */
20      private List<String> agreements = new ArrayList<String>();
21  
22      /*** The allowances. */
23      private List<String> allowances = new ArrayList<String>();
24  
25      /*** The electoral area. */
26      private String electoralArea = "";
27  
28      /*** The houses. */
29      private List<String> houses = new ArrayList<String>();
30  
31      /*** The income activity. */
32      private List<String> incomeActivity = new ArrayList<String>();
33  
34      /*** The name. */
35      private String name = "";
36  
37      /*** The nothing declared. */
38      private String nothingDeclared = "";
39  
40      /*** The party. */
41      private String party = "";
42  
43      /*** The public roles. */
44      private List<String> publicRoles = new ArrayList<String>();
45  
46      /*** The roles. */
47      private List<String> roles = new ArrayList<String>();
48  
49      /*** The stocks. */
50      private List<String> stocks = new ArrayList<String>();
51  
52      /***
53       * Gets the agreements.
54       *
55       * @return the agreements
56       */
57      public List<String> getAgreements() {
58          return agreements;
59      }
60  
61      /***
62       * Gets the allowances.
63       *
64       * @return the allowances
65       */
66      public List<String> getAllowances() {
67          return allowances;
68      }
69  
70      /***
71       * Gets the electoral area.
72       *
73       * @return the electoral area
74       */
75      public String getElectoralArea() {
76          return electoralArea;
77      }
78  
79      /***
80       * Gets the houses.
81       *
82       * @return the houses
83       */
84      public List<String> getHouses() {
85          return houses;
86      }
87  
88      /***
89       * Gets the income activity.
90       *
91       * @return the income activity
92       */
93      public List<String> getIncomeActivity() {
94          return incomeActivity;
95      }
96  
97      /***
98       * Gets the name.
99       *
100      * @return the name
101      */
102     public String getName() {
103         return name;
104     }
105 
106     /***
107      * Gets the nothing declared.
108      *
109      * @return the nothing declared
110      */
111     public String getNothingDeclared() {
112         return nothingDeclared;
113     }
114 
115     /***
116      * Gets the party.
117      *
118      * @return the party
119      */
120     public String getParty() {
121         return party;
122     }
123 
124     /***
125      * Gets the public roles.
126      *
127      * @return the public roles
128      */
129     public List<String> getPublicRoles() {
130         return publicRoles;
131     }
132 
133     /***
134      * Gets the roles.
135      *
136      * @return the roles
137      */
138     public List<String> getRoles() {
139         return roles;
140     }
141 
142     /***
143      * Gets the stocks.
144      *
145      * @return the stocks
146      */
147     public List<String> getStocks() {
148         return stocks;
149     }
150 
151     /***
152      * Sets the agreements.
153      *
154      * @param agreements the new agreements
155      */
156     public void setAgreements(final List<String> agreements) {
157         this.agreements = agreements;
158     }
159 
160     /***
161      * Sets the allowances.
162      *
163      * @param allowances the new allowances
164      */
165     public void setAllowances(final List<String> allowances) {
166         this.allowances = allowances;
167     }
168 
169     /***
170      * Sets the electoral area.
171      *
172      * @param electoralArea the new electoral area
173      */
174     public void setElectoralArea(final String electoralArea) {
175         this.electoralArea = electoralArea;
176     }
177 
178     /***
179      * Sets the houses.
180      *
181      * @param houses the new houses
182      */
183     public void setHouses(final List<String> houses) {
184         this.houses = houses;
185     }
186 
187     /***
188      * Sets the income activity.
189      *
190      * @param incomeActivity the new income activity
191      */
192     public void setIncomeActivity(final List<String> incomeActivity) {
193         this.incomeActivity = incomeActivity;
194     }
195 
196     /***
197      * Sets the name.
198      *
199      * @param name the new name
200      */
201     public void setName(final String name) {
202         this.name = name;
203     }
204 
205     /***
206      * Sets the nothing declared.
207      *
208      * @param nothingDeclared the new nothing declared
209      */
210     public void setNothingDeclared(final String nothingDeclared) {
211         this.nothingDeclared = nothingDeclared;
212     }
213 
214     /***
215      * Sets the party.
216      *
217      * @param party the new party
218      */
219     public void setParty(final String party) {
220         this.party = party;
221     }
222 
223     /***
224      * Sets the public roles.
225      *
226      * @param publicRoles the new public roles
227      */
228     public void setPublicRoles(final List<String> publicRoles) {
229         this.publicRoles = publicRoles;
230     }
231 
232     /***
233      * Sets the roles.
234      *
235      * @param roles the new roles
236      */
237     public void setRoles(final List<String> roles) {
238         this.roles = roles;
239     }
240 
241     /***
242      * Sets the stocks.
243      *
244      * @param stocks the new stocks
245      */
246     public void setStocks(final List<String> stocks) {
247         this.stocks = stocks;
248     }
249 }