View Javadoc

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