1 package test.crispy.example.model;
2
3 import java.util.Collection;
4 import java.util.List;
5
6 public class DataTransferObject {
7
8 private static final long serialVersionUID = 1606081116089590988L;
9 public static final String BA_ID = "BA_ID";
10 public static final String APPLICATION_ID = "APPLICATION_ID";
11
12 private Collection messages = null;
13 private String exceptionMessage = null;
14 private String exceptionClass = null;
15
16 private Long baid = null;
17 private List params = null;
18 private List paramtypes = null;
19 private Object returnObject = null;
20 private String returnType = null;
21
22 public Object getReturnObject() {
23 return returnObject;
24 }
25
26 public void setReturnObject(Object pvReturnObject) {
27 returnObject = pvReturnObject;
28 }
29
30 public List getParams() {
31 return params;
32 }
33
34 public void setParams(List pvParams) {
35 params = pvParams;
36 }
37
38 public DataTransferObject() {
39 }
40
41
42 public String getExceptionClass() {
43 return exceptionClass;
44 }
45
46 public void setExceptionClass(String pvExceptionClass) {
47 exceptionClass = pvExceptionClass;
48 }
49
50 public String getExceptionMessage() {
51 return exceptionMessage;
52 }
53
54 public void setExceptionMessage(String pvExceptionMessage) {
55 exceptionMessage = pvExceptionMessage;
56 }
57
58 public Collection getMessages() {
59 return messages;
60 }
61
62 public void setMessages(Collection pvMessages) {
63 messages = pvMessages;
64 }
65
66 public Long getBaid() {
67 return baid;
68 }
69
70 public void setBaid(Long pvBaid) {
71 baid = pvBaid;
72 }
73
74 public String getReturnType() {
75 return returnType;
76 }
77
78 public void setReturnType(String pvReturnType) {
79 returnType = pvReturnType;
80 }
81
82 public List getParamtypes() {
83 return paramtypes;
84 }
85
86 public void setParamtypes(List pvParamtypes) {
87 paramtypes = pvParamtypes;
88 }
89
90
91 }