View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObject;
4   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5   
6   import java.util.LinkedHashMap;
7   
8   /**
9    * MatchPoint is a business object class for Match Point
10   */
11  public class MatchPoint {
12      private String field;
13      private String subfield;
14      /**
15       * Gets the field attribute.
16       * @return  Returns the field.
17       */
18      public String getField() {
19          return field;
20      }
21      /**
22       * Sets the id field attribute value.
23       * @param field  The field to set.
24       */
25      public void setField(String field) {
26          this.field = field;
27      }
28      /**
29       * Gets the subfield attribute.
30       * @return  Returns the subfield.
31       */
32      public String getSubfield() {
33          return subfield;
34      }
35      /**
36       * Sets the subfield attribute value.
37       * @param subfield .The subfield to set.
38       */
39      public void setSubfield(String subfield) {
40          this.subfield = subfield;
41      }
42  
43  }