1   /*
2    * Copyright 2004 The Apache Software Foundation.
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 org.apache.commons.betwixt.derived;
17  
18  /***
19   * @author <a href='http://commons.apache.org'>Apache Commons Team</a>, <a href='http://www.apache.org'>Apache Software Foundation</a>
20   */
21  public class BeanWithSecrets {
22      
23      private String job;
24      private String employer;
25      private String name;
26      private String secretCodeName;
27      private String secretEmployer;
28      
29      public BeanWithSecrets() {}
30      
31      public BeanWithSecrets(String job, String employer, String name,
32              String secretCodeName, String secretEmployer) {
33          super();
34          this.job = job;
35          this.employer = employer;
36          this.name = name;
37          this.secretCodeName = secretCodeName;
38          this.secretEmployer = secretEmployer;
39      }
40      public String getEmployer() {
41          return employer;
42      }
43  
44      public void setEmployer(String employer) {
45          this.employer = employer;
46      }
47      
48      public String getJob() {
49          return job;
50      }
51  
52      public void setJob(String job) {
53          this.job = job;
54      }
55  
56      public String getName() {
57          return name;
58      }
59  
60      public void setName(String name) {
61          this.name = name;
62      }
63  
64      public String getSecretCodeName() {
65          return secretCodeName;
66      }
67  
68      public void setSecretCodeName(String secretCodeName) {
69          this.secretCodeName = secretCodeName;
70      }
71  
72      public String getSecretEmployer() {
73          return secretEmployer;
74      }
75      
76      public void setSecretEmployer(String secretEmployer) {
77          this.secretEmployer = secretEmployer;
78      }
79  }