001package org.kuali.ole.batch.bo;
002
003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005/**
006 * Created with IntelliJ IDEA.
007 * User: rajeshbabuk
008 * Date: 7/1/14
009 * Time: 1:15 PM
010 * To change this template use File | Settings | File Templates.
011 */
012public class OLEBatchProcessProfileMatchPoint extends PersistableBusinessObjectBase {
013
014    private String matchPointId;
015    private String matchPoint;
016    private String matchPointType;
017    private String batchProcessProfileId;
018    private OLEBatchProcessProfileBo oleBatchProcessProfileBo;
019
020    public String getMatchPointId() {
021        return matchPointId;
022    }
023
024    public void setMatchPointId(String matchPointId) {
025        this.matchPointId = matchPointId;
026    }
027
028    public String getMatchPoint() {
029        return matchPoint;
030    }
031
032    public void setMatchPoint(String matchPoint) {
033        this.matchPoint = matchPoint;
034    }
035
036    public String getMatchPointType() {
037        return matchPointType;
038    }
039
040    public void setMatchPointType(String matchPointType) {
041        this.matchPointType = matchPointType;
042    }
043
044    public String getBatchProcessProfileId() {
045        return batchProcessProfileId;
046    }
047
048    public void setBatchProcessProfileId(String batchProcessProfileId) {
049        this.batchProcessProfileId = batchProcessProfileId;
050    }
051
052    public OLEBatchProcessProfileBo getOleBatchProcessProfileBo() {
053        return oleBatchProcessProfileBo;
054    }
055
056    public void setOleBatchProcessProfileBo(OLEBatchProcessProfileBo oleBatchProcessProfileBo) {
057        this.oleBatchProcessProfileBo = oleBatchProcessProfileBo;
058    }
059}