1 package org.kuali.ole.docstore.discovery.bo;
2
3 //import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.util.ArrayList;
6 import java.util.List;
7
8 /**
9 * Created with IntelliJ IDEA.
10 * User: ?
11 * Date: 2/7/13
12 * Time: 1:10 PM
13 * To change this template use File | Settings | File Templates.
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 * Gets the exportFormat attribute.
27 *
28 * @return Returns the exportFormat
29 */
30 public String getExportFormat() {
31 return exportFormat;
32 }
33
34 /**
35 * Sets the exportFormat attribute value.
36 *
37 * @param exportFormat The exportFormat to set.
38 */
39 public void setExportFormat(String exportFormat) {
40 this.exportFormat = exportFormat;
41 }
42
43 /**
44 * Gets the exportType attribute.
45 *
46 * @return Returns the exportType
47 */
48 public String getExportType() {
49 return exportType;
50 }
51
52 /**
53 * Sets the exportType attribute value.
54 *
55 * @param exportType The exportType to set.
56 */
57 public void setExportType(String exportType) {
58 this.exportType = exportType;
59 }
60
61 /**
62 * Gets the noOfExportThreads attribute.
63 *
64 * @return Returns the noOfExportThreads
65 */
66 public Integer getNoOfExportThreads() {
67 return noOfExportThreads;
68 }
69
70 /**
71 * Sets the noOfExportThreads attribute value.
72 *
73 * @param noOfExportThreads The noOfExportThreads to set.
74 */
75 public void setNoOfExportThreads(Integer noOfExportThreads) {
76 this.noOfExportThreads = noOfExportThreads;
77 }
78
79 /**
80 * Gets the noOfRecords attribute.
81 *
82 * @return Returns the noOfRecords
83 */
84 public Integer getNoOfRecords() {
85 return noOfRecords;
86 }
87
88 /**
89 * Sets the noOfRecords attribute value.
90 *
91 * @param noOfRecords The noOfRecords to set.
92 */
93 public void setNoOfRecords(Integer noOfRecords) {
94 this.noOfRecords = noOfRecords;
95 }
96
97 /**
98 * Gets the exportTo attribute.
99 *
100 * @return Returns the exportTo
101 */
102 public String getExportTo() {
103 return exportTo;
104 }
105
106 /**
107 * Sets the exportTo attribute value.
108 *
109 * @param exportTo The exportTo to set.
110 */
111 public void setExportTo(String exportTo) {
112 this.exportTo = exportTo;
113 }
114
115 /**
116 * Gets the dataField attribute.
117 *
118 * @return Returns the dataField
119 */
120 public String getDataField() {
121 return dataField;
122 }
123
124 /**
125 * Sets the dataField attribute value.
126 *
127 * @param dataField The dataField to set.
128 */
129 public void setDataField(String dataField) {
130 this.dataField = dataField;
131 }
132
133 /**
134 * Gets the list of type OleDiscoveryMarcMappingField
135 *
136 * @return oleDiscoveryMarcMappingFields
137 */
138 public List<OleDiscoveryMarcMappingField> getOleDiscoveryMarcMappingFields() {
139 return oleDiscoveryMarcMappingFields;
140 }
141
142 /**
143 * Sets the list of values of the type OleDiscoveryMarcMappingField
144 *
145 * @param oleDiscoveryMarcMappingFields
146 */
147 public void setOleDiscoveryMarcMappingFields(List<OleDiscoveryMarcMappingField> oleDiscoveryMarcMappingFields) {
148 this.oleDiscoveryMarcMappingFields = oleDiscoveryMarcMappingFields;
149 }
150 }