1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.docstore.model.xmlpojo.ingest;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21
22
23
24
25
26
27
28 public class Request {
29 private List<RequestDocument> requestDocuments = new ArrayList<RequestDocument>();
30 private String user;
31 private String operation;
32
33 public String getUser() {
34 return user;
35 }
36
37 public void setUser(String user) {
38 this.user = user;
39 }
40
41 public String getOperation() {
42 return operation;
43 }
44
45 public void setOperation(String operation) {
46 this.operation = operation;
47 }
48
49 public List<RequestDocument> getRequestDocuments() {
50 return requestDocuments;
51 }
52
53 public void setRequestDocuments(List<RequestDocument> requestDocuments) {
54 this.requestDocuments = requestDocuments;
55 }
56
57 }