1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.documentoperation.web;
17
18 import org.kuali.rice.kns.web.struts.form.KualiForm;
19
20 public class DocumentContentOperationForm extends KualiForm {
21
22 private static final long serialVersionUID = 4087704636454964035L;
23
24 private String documentId;
25 private String key;
26
27 public String getDocumentId() {
28 return documentId;
29 }
30 public void setDocumentId(String documentId) {
31 this.documentId = documentId;
32 }
33 public String getKey() {
34 return key;
35 }
36 public void setKey(String key) {
37 this.key = key;
38 }
39 }