KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > Individuals


1 /*
2  * Copyright 2005-2007 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  * http://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 net.sf.dozer.util.mapping.vo;
17
18 import java.util.List JavaDoc;
19 import java.util.Set JavaDoc;
20
21 /**
22  * @author wojtek.kiersztyn
23  * @author dominic.peciuch
24  *
25  */

26 public class Individuals {
27     private List JavaDoc usernames;
28
29     private Individual individual;
30
31     private String JavaDoc simpleField;
32
33     private String JavaDoc[] secondNames;
34
35     private Aliases aliases;
36     
37     private Set JavaDoc addressSet;
38
39     public List JavaDoc getUsernames() {
40         return usernames;
41     }
42
43     public void setUsernames(List JavaDoc usernames) {
44         this.usernames = usernames;
45     }
46
47     public Individual getIndividual() {
48         return individual;
49     }
50
51     public void setIndividual(Individual individual) {
52         this.individual = individual;
53     }
54
55     public String JavaDoc getSimpleField() {
56         return simpleField;
57     }
58
59     public void setSimpleField(String JavaDoc simpleField) {
60         this.simpleField = simpleField;
61     }
62
63     public String JavaDoc[] getSecondNames() {
64         return secondNames;
65     }
66
67     public void setSecondNames(String JavaDoc[] secondNames) {
68         this.secondNames = secondNames;
69     }
70
71     public Aliases getAliases() {
72         return aliases;
73     }
74
75     public void setAliases(Aliases aliases) {
76         this.aliases = aliases;
77     }
78
79     public Set JavaDoc getAddressSet() {
80       return addressSet;
81     }
82
83     public void setAddressSet(Set JavaDoc addressSet) {
84       this.addressSet = addressSet;
85     }
86 }
87
Popular Tags