001package org.kuali.ole.batch.bo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObject; 004import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 005 006import java.util.ArrayList; 007import java.util.List; 008 009/** 010 * Created with IntelliJ IDEA. 011 * User: adityas 012 * Date: 7/26/13 013 * Time: 3:52 PM 014 * To change this template use File | Settings | File Templates. 015 */ 016public class OLEBatchProcessProfileInstanceMatchPoint extends PersistableBusinessObjectBase { 017 018 private String oleInstanceMatchPointId; 019 private String oleInstanceMatchPointName; 020 private String batchProcessProfileId; 021 private OLEBatchProcessProfileBo oleBatchProcessProfileBo; 022 023 public OLEBatchProcessProfileBo getOleBatchProcessProfileBo() { 024 return oleBatchProcessProfileBo; 025 } 026 027 public void setOleBatchProcessProfileBo(OLEBatchProcessProfileBo oleBatchProcessProfileBo) { 028 this.oleBatchProcessProfileBo = oleBatchProcessProfileBo; 029 } 030 031 public String getOleInstanceMatchPointId() { 032 return oleInstanceMatchPointId; 033 } 034 035 public void setOleInstanceMatchPointId(String oleInstanceMatchPointId) { 036 this.oleInstanceMatchPointId = oleInstanceMatchPointId; 037 } 038 039 public String getOleInstanceMatchPointName() { 040 return oleInstanceMatchPointName; 041 } 042 043 public void setOleInstanceMatchPointName(String oleInstanceMatchPointName) { 044 this.oleInstanceMatchPointName = oleInstanceMatchPointName; 045 } 046 047 public String getBatchProcessProfileId() { 048 return batchProcessProfileId; 049 } 050 051 public void setBatchProcessProfileId(String batchProcessProfileId) { 052 this.batchProcessProfileId = batchProcessProfileId; 053 } 054 055 056}