1 package org.kuali.ole.describe.form;
2
3 import org.kuali.ole.docstore.model.bo.WorkBibDocument;
4 import org.kuali.ole.docstore.model.xmlpojo.work.instance.oleml.*;
5 import org.kuali.ole.editor.bo.InstanceRecordMetaData;
6 import org.kuali.ole.editor.bo.SourceEditorForUI;
7 import org.kuali.rice.krad.web.form.UifFormBase;
8
9 import java.util.List;
10
11
12
13
14
15
16
17
18 public class EditorForm extends UifFormBase {
19
20 protected String message;
21
22 private String docCategory;
23 private String docType;
24 private String docFormat;
25 private String uuid;
26 private String docId;
27
28
29 private WorkBibMarcForm workBibMarcForm;
30 private EditorForm documentForm;
31
32
33
34 private String existing = "false";
35 private String treeData;
36 private String hdnUuid;
37 private int hdnIndex = 0;
38
39 private List<WorkBibDocument> workBibDocumentList;
40
41 public EditorForm() {
42
43
44 }
45
46 public String getDocType() {
47 return docType;
48 }
49
50 public void setDocType(String docType) {
51 this.docType = docType;
52 }
53
54 public String getDocFormat() {
55 return docFormat;
56 }
57
58 public void setDocFormat(String docFormat) {
59 this.docFormat = docFormat;
60 }
61
62 public String getUuid() {
63 return uuid;
64 }
65
66 public void setUuid(String uuid) {
67 this.uuid = uuid;
68 }
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115 public String getExisting() {
116 return existing;
117 }
118
119 public void setExisting(String existing) {
120 this.existing = existing;
121 }
122
123 public String getTreeData() {
124 return treeData;
125 }
126
127 public void setTreeData(String treeData) {
128 this.treeData = treeData;
129 }
130
131 public String getHdnUuid() {
132 return hdnUuid;
133 }
134
135 public void setHdnUuid(String hdnUuid) {
136 this.hdnUuid = hdnUuid;
137 }
138
139 public int getHdnIndex() {
140 return hdnIndex;
141 }
142
143 public void setHdnIndex(int hdnIndex) {
144 this.hdnIndex = hdnIndex;
145 }
146
147
148
149
150
151
152
153
154
155
156
157 public List<WorkBibDocument> getWorkBibDocumentList() {
158 return workBibDocumentList;
159 }
160
161 public void setWorkBibDocumentList(List<WorkBibDocument> workBibDocumentList) {
162 this.workBibDocumentList = workBibDocumentList;
163 }
164
165 public String getDocCategory() {
166 return docCategory;
167 }
168
169 public void setDocCategory(String docCategory) {
170 this.docCategory = docCategory;
171 }
172
173 public String getDocId() {
174 return docId;
175 }
176
177 public void setDocId(String docId) {
178 this.docId = docId;
179 }
180
181 public WorkBibMarcForm getWorkBibMarcForm() {
182 return workBibMarcForm;
183 }
184
185 public void setWorkBibMarcForm(WorkBibMarcForm workBibMarcForm) {
186 this.workBibMarcForm = workBibMarcForm;
187 }
188
189 public String getMessage() {
190 return message;
191 }
192
193 public void setMessage(String message) {
194 this.message = message;
195 }
196
197 public EditorForm getDocumentForm() {
198 return documentForm;
199 }
200
201 public void setDocumentForm(EditorForm documentForm) {
202 this.documentForm = documentForm;
203 }
204 }