View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.rice.krad.test;
17  
18  import org.kuali.rice.krad.datadictionary.uif.UifDictionaryBeanBase;
19  
20  import java.util.List;
21  import java.util.Map;
22  
23  /**
24   * Object for testing bean configurations
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class TestDictionaryBean extends UifDictionaryBeanBase {
29  
30      private String property1;
31      private String property2;
32      private boolean property3;
33      private int property4;
34  
35      private List<String> list1;
36      private Map<String, String> map1;
37  
38      private TestDictionaryBean reference1;
39      private TestDictionaryBean reference2;
40  
41      private List<TestDictionaryBean> listReference1;
42      private List<TestDictionaryBean> listReference2;
43  
44      private Map<String, TestDictionaryBean> mapReference1;
45  
46      public TestDictionaryBean() {
47  
48      }
49  
50      public String getProperty1() {
51          return property1;
52      }
53  
54      public void setProperty1(String property1) {
55          this.property1 = property1;
56      }
57  
58      public String getProperty2() {
59          return property2;
60      }
61  
62      public void setProperty2(String property2) {
63          this.property2 = property2;
64      }
65  
66      public boolean isProperty3() {
67          return property3;
68      }
69  
70      public void setProperty3(boolean property3) {
71          this.property3 = property3;
72      }
73  
74      public int getProperty4() {
75          return property4;
76      }
77  
78      public void setProperty4(int property4) {
79          this.property4 = property4;
80      }
81  
82      public List<String> getList1() {
83          return list1;
84      }
85  
86      public void setList1(List<String> list1) {
87          this.list1 = list1;
88      }
89  
90      public Map<String, String> getMap1() {
91          return map1;
92      }
93  
94      public void setMap1(Map<String, String> map1) {
95          this.map1 = map1;
96      }
97  
98      public TestDictionaryBean getReference1() {
99          return reference1;
100     }
101 
102     public void setReference1(TestDictionaryBean reference1) {
103         this.reference1 = reference1;
104     }
105 
106     public TestDictionaryBean getReference2() {
107         return reference2;
108     }
109 
110     public void setReference2(TestDictionaryBean reference2) {
111         this.reference2 = reference2;
112     }
113 
114     public List<TestDictionaryBean> getListReference1() {
115         return listReference1;
116     }
117 
118     public void setListReference1(List<TestDictionaryBean> listReference1) {
119         this.listReference1 = listReference1;
120     }
121 
122     public List<TestDictionaryBean> getListReference2() {
123         return listReference2;
124     }
125 
126     public void setListReference2(List<TestDictionaryBean> listReference2) {
127         this.listReference2 = listReference2;
128     }
129 
130     public Map<String, TestDictionaryBean> getMapReference1() {
131         return mapReference1;
132     }
133 
134     public void setMapReference1(Map<String, TestDictionaryBean> mapReference1) {
135         this.mapReference1 = mapReference1;
136     }
137 }