1 /*
2 * Copyright 2011 The Kuali Foundation.
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.ole.docstore.model.xmlpojo.ingest;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21 /**
22 * Created by IntelliJ IDEA.
23 * User: pvsubrah
24 * Date: 9/7/11
25 * Time: 1:18 PM
26 * To change this template use File | Settings | File Templates.
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 }