KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
19  * @author wojtek.kiersztyn
20  * @author dominic.peciuch
21  *
22  */

23 public class FlatIndividual {
24     private String JavaDoc username1;
25
26     private String JavaDoc username2;
27
28     private String JavaDoc simpleField;
29
30     private String JavaDoc secondName1;
31
32     private String JavaDoc secondName2;
33
34     private String JavaDoc primaryAlias;
35     
36     private String JavaDoc address;
37
38     public String JavaDoc getUsername1() {
39         return username1;
40     }
41
42     public void setUsername1(String JavaDoc username1) {
43         this.username1 = username1;
44     }
45
46     public String JavaDoc getUsername2() {
47         return username2;
48     }
49
50     public void setUsername2(String JavaDoc username2) {
51         this.username2 = username2;
52     }
53
54     public String JavaDoc getSimpleField() {
55         return simpleField;
56     }
57
58     public void setSimpleField(String JavaDoc simpleField) {
59         this.simpleField = simpleField;
60     }
61
62     public String JavaDoc getSecondName1() {
63         return secondName1;
64     }
65
66     public void setSecondName1(String JavaDoc secondName1) {
67         this.secondName1 = secondName1;
68     }
69
70     public String JavaDoc getSecondName2() {
71         return secondName2;
72     }
73
74     public void setSecondName2(String JavaDoc secondName2) {
75         this.secondName2 = secondName2;
76     }
77
78     public String JavaDoc getPrimaryAlias() {
79         return primaryAlias;
80     }
81
82     public void setPrimaryAlias(String JavaDoc primaryAlias) {
83         this.primaryAlias = primaryAlias;
84     }
85
86     public String JavaDoc getAddress() {
87       return address;
88     }
89
90     public void setAddress(String JavaDoc address) {
91       this.address = address;
92     }
93 }
94
Popular Tags