1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.help.web; |
18 | |
|
19 | |
import org.apache.struts.action.ActionForm; |
20 | |
import org.kuali.rice.kew.help.HelpEntry; |
21 | |
import org.kuali.rice.kns.web.struts.form.KualiForm; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
public class HelpForm extends KualiForm { |
30 | |
|
31 | |
private static final long serialVersionUID = 6517665417435951210L; |
32 | |
private HelpEntry helpEntry; |
33 | |
private String helpId; |
34 | |
private String showEdit; |
35 | |
private boolean isAdmin; |
36 | |
private String showDelete; |
37 | |
|
38 | 0 | public HelpForm(){ |
39 | 0 | helpEntry = new HelpEntry(); |
40 | 0 | } |
41 | |
|
42 | |
public HelpEntry getHelpEntry() { |
43 | 0 | return helpEntry; |
44 | |
} |
45 | |
public void setHelpEntry(HelpEntry helpEntry) { |
46 | 0 | this.helpEntry = helpEntry; |
47 | 0 | } |
48 | |
|
49 | |
public String getShowEdit() { |
50 | 0 | return showEdit; |
51 | |
} |
52 | |
public void setShowEdit(String showEdit) { |
53 | 0 | this.showEdit = showEdit; |
54 | 0 | } |
55 | |
|
56 | |
public boolean getIsAdmin(){ |
57 | 0 | return isAdmin; |
58 | |
} |
59 | |
|
60 | |
public void setIsAdmin(boolean isAdmin){ |
61 | 0 | this.isAdmin = isAdmin; |
62 | 0 | } |
63 | |
|
64 | |
public String getShowDelete(){ |
65 | 0 | return showDelete; |
66 | |
} |
67 | |
|
68 | |
public void setShowDelete(String showDelete){ |
69 | 0 | this.showDelete=showDelete; |
70 | 0 | } |
71 | |
|
72 | |
public String getHelpId() { |
73 | 0 | return this.helpId; |
74 | |
} |
75 | |
|
76 | |
public void setHelpId(String helpId) { |
77 | 0 | this.helpId = helpId; |
78 | 0 | } |
79 | |
|
80 | |
} |