001package org.kuali.ole.ingest.pojo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObject; 004import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 005 006import java.util.LinkedHashMap; 007 008/** 009 * MatchPoint is a business object class for Match Point 010 */ 011public class MatchPoint { 012 private String field; 013 private String subfield; 014 /** 015 * Gets the field attribute. 016 * @return Returns the field. 017 */ 018 public String getField() { 019 return field; 020 } 021 /** 022 * Sets the id field attribute value. 023 * @param field The field to set. 024 */ 025 public void setField(String field) { 026 this.field = field; 027 } 028 /** 029 * Gets the subfield attribute. 030 * @return Returns the subfield. 031 */ 032 public String getSubfield() { 033 return subfield; 034 } 035 /** 036 * Sets the subfield attribute value. 037 * @param subfield .The subfield to set. 038 */ 039 public void setSubfield(String subfield) { 040 this.subfield = subfield; 041 } 042 043}