1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.sys.businessobject;
17
18 import org.kuali.rice.krad.bo.TransientBusinessObjectBase;
19
20
21
22
23 public class AcquisitionBatchUpload extends TransientBusinessObjectBase {
24 private String batchFilePath;
25 private String batchLoadProfile;
26 private String batchDescription;
27 private String batchInputTypeName;
28
29
30
31
32
33
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
79
80
81
82
83
84
85
86
87
88 }