1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.lookupable; |
18 | |
|
19 | |
import java.util.ArrayList; |
20 | |
import java.util.List; |
21 | |
import java.util.Map; |
22 | |
|
23 | |
import org.apache.struts.action.ActionForm; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | 0 | public class LookupForm extends ActionForm { |
31 | |
|
32 | |
private static final long serialVersionUID = -4397265394670795140L; |
33 | |
private String formKey; |
34 | |
private String backLocation; |
35 | |
private Map fields; |
36 | 0 | private String methodToCall = ""; |
37 | |
private String lookupableImplServiceName; |
38 | |
private String conversionFields; |
39 | |
private Map fieldConversions; |
40 | |
private String noReturnParams; |
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
public String getLookupableImplServiceName() { |
46 | 0 | return lookupableImplServiceName; |
47 | |
} |
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
public void setLookupableImplServiceName(String lookupableImplServiceName) { |
54 | 0 | this.lookupableImplServiceName = lookupableImplServiceName; |
55 | 0 | } |
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
public String getMethodToCall() { |
61 | 0 | return methodToCall; |
62 | |
} |
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | |
public void setMethodToCall(String methodToCall) { |
69 | 0 | this.methodToCall = methodToCall; |
70 | 0 | } |
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
public String getBackLocation() { |
76 | 0 | return backLocation; |
77 | |
} |
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
public void setBackLocation(String backLocation) { |
84 | 0 | this.backLocation = backLocation; |
85 | 0 | } |
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | |
public String getFormKey() { |
91 | 0 | return formKey; |
92 | |
} |
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
public void setFormKey(String formKey) { |
99 | 0 | this.formKey = formKey; |
100 | 0 | } |
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public Map getFields() { |
106 | 0 | return fields; |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
public void setFields(Map fields) { |
114 | 0 | this.fields = fields; |
115 | 0 | } |
116 | |
public String getConversionFields() { |
117 | 0 | return conversionFields; |
118 | |
} |
119 | |
public void setConversionFields(String conversionFields) { |
120 | 0 | this.conversionFields = conversionFields; |
121 | 0 | } |
122 | |
public String getNoReturnParams() { |
123 | 0 | return noReturnParams; |
124 | |
} |
125 | |
public void setNoReturnParams(String noReturnParams) { |
126 | 0 | this.noReturnParams = noReturnParams; |
127 | 0 | } |
128 | |
public Map getFieldConversions() { |
129 | 0 | return fieldConversions; |
130 | |
} |
131 | |
public void setFieldConversions(Map fieldConversions) { |
132 | 0 | this.fieldConversions = fieldConversions; |
133 | 0 | } |
134 | |
|
135 | |
} |