View Javadoc
1   package org.kuali.ole.batch.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObject;
4   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5   
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: adityas
12   * Date: 7/26/13
13   * Time: 3:52 PM
14   * To change this template use File | Settings | File Templates.
15   */
16  public class OLEBatchProcessProfileInstanceMatchPoint extends PersistableBusinessObjectBase {
17  
18      private String oleInstanceMatchPointId;
19      private String oleInstanceMatchPointName;
20      private String batchProcessProfileId;
21      private OLEBatchProcessProfileBo oleBatchProcessProfileBo;
22  
23      public OLEBatchProcessProfileBo getOleBatchProcessProfileBo() {
24          return oleBatchProcessProfileBo;
25      }
26  
27      public void setOleBatchProcessProfileBo(OLEBatchProcessProfileBo oleBatchProcessProfileBo) {
28          this.oleBatchProcessProfileBo = oleBatchProcessProfileBo;
29      }
30  
31      public String getOleInstanceMatchPointId() {
32          return oleInstanceMatchPointId;
33      }
34  
35      public void setOleInstanceMatchPointId(String oleInstanceMatchPointId) {
36          this.oleInstanceMatchPointId = oleInstanceMatchPointId;
37      }
38  
39      public String getOleInstanceMatchPointName() {
40          return oleInstanceMatchPointName;
41      }
42  
43      public void setOleInstanceMatchPointName(String oleInstanceMatchPointName) {
44          this.oleInstanceMatchPointName = oleInstanceMatchPointName;
45      }
46  
47      public String getBatchProcessProfileId() {
48          return batchProcessProfileId;
49      }
50  
51      public void setBatchProcessProfileId(String batchProcessProfileId) {
52          this.batchProcessProfileId = batchProcessProfileId;
53      }
54  
55  
56  }