001package org.kuali.ole.ingest.krms.pojo; 002 003 004/** 005 * Created with IntelliJ IDEA. 006 * User: vivekb 007 * Date: 8/22/12 008 * Time: 3:04 PM 009 * To change this template use File | Settings | File Templates. 010 */ 011public class OleKrmsProposition { 012 private String type; 013 private OleSimpleProposition simpleProposition; 014 private OleCompoundProposition compoundProposition; 015 016 public String getType() { 017 return type; 018 } 019 020 public void setType(String type) { 021 this.type = type; 022 } 023 024 public OleSimpleProposition getSimpleProposition() { 025 return simpleProposition; 026 } 027 028 public void setSimpleProposition(OleSimpleProposition simpleProposition) { 029 this.simpleProposition = simpleProposition; 030 } 031 032 public OleCompoundProposition getCompoundProposition() { 033 return compoundProposition; 034 } 035 036 public void setCompoundProposition(OleCompoundProposition compoundProposition) { 037 this.compoundProposition = compoundProposition; 038 } 039}