1 /*
2 * Copyright 2007 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.sys.businessobject;
17
18 import org.kuali.rice.krad.bo.TransientBusinessObjectBase;
19
20 /**
21 * Object that contains properties used on the batch upload screen.
22 */
23 public class AcquisitionBatchUpload extends TransientBusinessObjectBase {
24 private String batchFilePath;
25 private String batchLoadProfile;
26 private String batchDescription;
27 private String batchInputTypeName;
28 //private String batchDestinationFilePath;
29
30
31
32 /**
33 * Default no-arg constructor.
34 */
35 public AcquisitionBatchUpload() {
36
37 }
38
39 public String getBatchFilePath() {
40 return batchFilePath;
41 }
42
43
44 public void setBatchFilePath(String batchFilePath) {
45 this.batchFilePath = batchFilePath;
46 }
47
48
49 public String getBatchLoadProfile() {
50 return batchLoadProfile;
51 }
52
53
54 public void setBatchLoadProfile(String batchLoadProfile) {
55 this.batchLoadProfile = batchLoadProfile;
56 }
57
58
59 public String getBatchDescription() {
60 return batchDescription;
61 }
62
63
64 public void setBatchDescription(String batchDescription) {
65 this.batchDescription = batchDescription;
66 }
67
68
69 public String getBatchInputTypeName() {
70 return batchInputTypeName;
71 }
72
73
74 public void setBatchInputTypeName(String batchInputTypeName) {
75 this.batchInputTypeName = batchInputTypeName;
76 }
77
78 /* public String getBatchDestinationFilePath() {
79 return batchDestinationFilePath;
80 }
81
82
83 public void setBatchDestinationFilePath(String batchDestinationFilePath) {
84 this.batchDestinationFilePath = batchDestinationFilePath;
85 }*/
86
87
88 }