01: /*
02: * This file is part of PFIXCORE.
03: *
04: * PFIXCORE is free software; you can redistribute it and/or modify
05: * it under the terms of the GNU Lesser General Public License as published by
06: * the Free Software Foundation; either version 2 of the License, or
07: * (at your option) any later version.
08: *
09: * PFIXCORE is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: * GNU Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public License
15: * along with PFIXCORE; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: */
19: package de.schlund.pfixcore.webservice.jsonws;
20:
21: import java.util.HashMap;
22: import java.util.List;
23: import java.util.Map;
24:
25: /**
26: * @author mleidig@schlund.de
27: */
28: public class TestBean {
29: private int value;
30: private String text;
31: private List<String> strList;
32: private List<List<Integer>> intList;
33: private Map<String, String> strMap;
34: private Map<String, Map<String, Integer>> mapMap;
35: private HashMap<String, Integer> intMap;
36:
37: public int getValue() {
38: return value;
39: }
40:
41: public void setValue(int value) {
42: this .value = value;
43: }
44:
45: public String getText() {
46: return text;
47: }
48:
49: public void setText(String text) {
50: this .text = text;
51: }
52:
53: public List<String> getStrList() {
54: return strList;
55: }
56:
57: public void setStrList(List<String> strList) {
58: this .strList = strList;
59: }
60:
61: public List<List<Integer>> getIntList() {
62: return intList;
63: }
64:
65: public void setIntList(List<List<Integer>> intList) {
66: this .intList = intList;
67: }
68:
69: public Map<String, String> getStrMap() {
70: return strMap;
71: }
72:
73: public void setStrMap(Map<String, String> strMap) {
74: this .strMap = strMap;
75: }
76:
77: public Map<String, Map<String, Integer>> getMapMap() {
78: return mapMap;
79: }
80:
81: public void setMapMap(Map<String, Map<String, Integer>> mapMap) {
82: this .mapMap = mapMap;
83: }
84:
85: public HashMap<String, Integer> getIntMap() {
86: return intMap;
87: }
88:
89: public void setIntMap(HashMap<String, Integer> intMap) {
90: this.intMap = intMap;
91: }
92:
93: }
|