View Javadoc
1   package org.kuali.ole.describe.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.List;
6   import java.util.ArrayList;
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.                         N
14   */
15  public class OleDiscoveryExportProfile extends PersistableBusinessObjectBase {
16  
17      private String exportId;
18      private String exportProfileCode;
19      private String exportProfileName;
20      private String exportFormat;
21      private String exportType;
22      private String exportTo;
23      private Integer noOfExportThreads;
24      private Integer noOfRecords;
25      private String dataField;
26      private List<OleDiscoveryExportMappingFields> oleDiscoveryExportMappingFields = new ArrayList<OleDiscoveryExportMappingFields>();
27  
28  
29      /**
30       * Gets the exportId attribute.
31       *
32       * @return Returns the exportId
33       */
34      public String getExportId() {
35          return exportId;
36      }
37  
38      /**
39       * Sets the exportId attribute value.
40       *
41       * @param exportId The exportId to set.
42       */
43      public void setExportId(String exportId) {
44          this.exportId = exportId;
45      }
46  
47      public String getExportProfileCode() {
48          return exportProfileCode;
49      }
50  
51      public void setExportProfileCode(String exportProfileCode) {
52          this.exportProfileCode = exportProfileCode;
53      }
54  
55      public String getExportProfileName() {
56          return exportProfileName;
57      }
58  
59      public void setExportProfileName(String exportProfileName) {
60          this.exportProfileName = exportProfileName;
61      }
62  
63      /**
64       * Gets the exportFormat attribute.
65       *
66       * @return Returns the exportFormat
67       */
68      public String getExportFormat() {
69          return exportFormat;
70      }
71  
72      /**
73       * Sets the exportFormat attribute value.
74       *
75       * @param exportFormat The exportFormat to set.
76       */
77      public void setExportFormat(String exportFormat) {
78          this.exportFormat = exportFormat;
79      }
80  
81      /**
82       * Gets the exportType attribute.
83       *
84       * @return Returns the exportType
85       */
86      public String getExportType() {
87          return exportType;
88      }
89  
90      /**
91       * Sets the exportType attribute value.
92       *
93       * @param exportType The exportType to set.
94       */
95      public void setExportType(String exportType) {
96          this.exportType = exportType;
97      }
98  
99      /**
100      * Gets the noOfExportThreads attribute.
101      *
102      * @return Returns the noOfExportThreads
103      */
104     public Integer getNoOfExportThreads() {
105         return noOfExportThreads;
106     }
107 
108     /**
109      * Sets the noOfExportThreads attribute value.
110      *
111      * @param noOfExportThreads The noOfExportThreads to set.
112      */
113     public void setNoOfExportThreads(Integer noOfExportThreads) {
114         this.noOfExportThreads = noOfExportThreads;
115     }
116 
117     /**
118      * Gets the exportTo attribute.
119      *
120      * @return Returns the exportTo
121      */
122     public String getExportTo() {
123         return exportTo;
124     }
125 
126     /**
127      * Sets the exportTo attribute value.
128      *
129      * @param exportTo The exportTo to set.
130      */
131     public void setExportTo(String exportTo) {
132         this.exportTo = exportTo;
133     }
134 
135     /**
136      * Gets the dataField attribute.
137      *
138      * @return Returns the dataField
139      */
140     public String getDataField() {
141         return dataField;
142     }
143 
144     /**
145      * Sets the dataField attribute value.
146      *
147      * @param dataField The dataField to set.
148      */
149     public void setDataField(String dataField) {
150         this.dataField = dataField;
151     }
152 
153     /**
154      * Gets the noOfRecords attribute.
155      *
156      * @return Returns the noOfRecords
157      */
158     public Integer getNoOfRecords() {
159         return noOfRecords;
160     }
161 
162     /**
163      * Sets the noOfRecords attribute value.
164      *
165      * @param noOfRecords The noOfRecords to set.
166      */
167     public void setNoOfRecords(Integer noOfRecords) {
168         this.noOfRecords = noOfRecords;
169     }
170 
171     /**
172      * Gets the list of type OleDiscoveryExportMappingFields
173      *
174      * @return oleDiscoveryExportMappingFields
175      */
176     public List<OleDiscoveryExportMappingFields> getOleDiscoveryExportMappingFields() {
177         return oleDiscoveryExportMappingFields;
178     }
179 
180     /**
181      * Sets the list of values of the type OleDiscoveryExportMappingFields
182      *
183      * @param oleDiscoveryExportMappingFields
184      *
185      */
186     public void setOleDiscoveryExportMappingFields(List<OleDiscoveryExportMappingFields> oleDiscoveryExportMappingFields) {
187         this.oleDiscoveryExportMappingFields = oleDiscoveryExportMappingFields;
188     }
189 }