1 package org.kuali.ole.docstore.discovery.bo;
2
3
4
5 import java.util.ArrayList;
6 import java.util.List;
7
8
9
10
11
12
13
14
15 public class OleDiscoveryMarcExportProfile {
16 private String exportFormat;
17 private String exportType;
18 private String exportTo;
19 private Integer noOfExportThreads;
20 private Integer noOfRecords;
21 private String dataField;
22 private List<OleDiscoveryMarcMappingField> oleDiscoveryMarcMappingFields = new ArrayList<OleDiscoveryMarcMappingField>();
23
24
25
26
27
28
29
30 public String getExportFormat() {
31 return exportFormat;
32 }
33
34
35
36
37
38
39 public void setExportFormat(String exportFormat) {
40 this.exportFormat = exportFormat;
41 }
42
43
44
45
46
47
48 public String getExportType() {
49 return exportType;
50 }
51
52
53
54
55
56
57 public void setExportType(String exportType) {
58 this.exportType = exportType;
59 }
60
61
62
63
64
65
66 public Integer getNoOfExportThreads() {
67 return noOfExportThreads;
68 }
69
70
71
72
73
74
75 public void setNoOfExportThreads(Integer noOfExportThreads) {
76 this.noOfExportThreads = noOfExportThreads;
77 }
78
79
80
81
82
83
84 public Integer getNoOfRecords() {
85 return noOfRecords;
86 }
87
88
89
90
91
92
93 public void setNoOfRecords(Integer noOfRecords) {
94 this.noOfRecords = noOfRecords;
95 }
96
97
98
99
100
101
102 public String getExportTo() {
103 return exportTo;
104 }
105
106
107
108
109
110
111 public void setExportTo(String exportTo) {
112 this.exportTo = exportTo;
113 }
114
115
116
117
118
119
120 public String getDataField() {
121 return dataField;
122 }
123
124
125
126
127
128
129 public void setDataField(String dataField) {
130 this.dataField = dataField;
131 }
132
133
134
135
136
137
138 public List<OleDiscoveryMarcMappingField> getOleDiscoveryMarcMappingFields() {
139 return oleDiscoveryMarcMappingFields;
140 }
141
142
143
144
145
146
147 public void setOleDiscoveryMarcMappingFields(List<OleDiscoveryMarcMappingField> oleDiscoveryMarcMappingFields) {
148 this.oleDiscoveryMarcMappingFields = oleDiscoveryMarcMappingFields;
149 }
150 }