001package org.kuali.ole.select.bo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 004 005 006/** 007 * Created by chenchulakshmig on 10/30/14. 008 */ 009public class OLEGOKbMappingValue extends PersistableBusinessObjectBase { 010 011 private String gokbMappingId; 012 013 private String recordId; 014 015 private String dataElementId; 016 017 private String gokbValue; 018 019 private String localValue; 020 021 private String recordType; 022 023 private boolean reset; 024 025 private boolean gokbFlag; 026 027 private GOKbDataElement goKbDataElement; 028 029 public String getGokbMappingId() { 030 return gokbMappingId; 031 } 032 033 public void setGokbMappingId(String gokbMappingId) { 034 this.gokbMappingId = gokbMappingId; 035 } 036 037 public String getRecordId() { 038 return recordId; 039 } 040 041 public void setRecordId(String recordId) { 042 this.recordId = recordId; 043 } 044 045 public String getDataElementId() { 046 return dataElementId; 047 } 048 049 public void setDataElementId(String dataElementId) { 050 this.dataElementId = dataElementId; 051 } 052 053 public String getGokbValue() { 054 return gokbValue; 055 } 056 057 public void setGokbValue(String gokbValue) { 058 this.gokbValue = gokbValue; 059 } 060 061 public String getLocalValue() { 062 return localValue; 063 } 064 065 public void setLocalValue(String localValue) { 066 this.localValue = localValue; 067 } 068 069 public String getRecordType() { 070 return recordType; 071 } 072 073 public void setRecordType(String recordType) { 074 this.recordType = recordType; 075 } 076 077 public boolean isReset() { 078 return reset; 079 } 080 081 public void setReset(boolean reset) { 082 this.reset = reset; 083 } 084 085 public GOKbDataElement getGoKbDataElement() { 086 return goKbDataElement; 087 } 088 089 public void setGoKbDataElement(GOKbDataElement goKbDataElement) { 090 this.goKbDataElement = goKbDataElement; 091 } 092 093 public boolean isGokbFlag() { 094 return gokbFlag; 095 } 096 097 public void setGokbFlag(boolean gokbFlag) { 098 this.gokbFlag = gokbFlag; 099 } 100}