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
30 public enum Operation {
31 ingest, bulkIngest, checkIn, checkOut, delete, deleteWithLinkedDocs , bind, unbind, transfer
32 }
33
34 private List<RequestDocument> requestDocuments = new ArrayList<RequestDocument>();
35 private String user;
36 private String operation;
37
38 public String getUser() {
39 return user;
40 }
41
42 public void setUser(String user) {
43 this.user = user;
44 }
45
46 public String getOperation() {
47 return operation;
48 }
49
50 public void setOperation(String operation) {
51 this.operation = operation;
52 }
53
54 public List<RequestDocument> getRequestDocuments() {
55 return requestDocuments;
56 }
57
58 public void setRequestDocuments(List<RequestDocument> requestDocuments) {
59 this.requestDocuments = requestDocuments;
60 }
61
62 }