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