View Javadoc

1   package org.kuali.ole.ingest.pojo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.LinkedHashMap;
6   
7   /**
8    * MatchBo is a business object class for Match Bo
9    */
10  public class MatchBo  extends PersistableBusinessObjectBase {
11      private Integer id;
12      private String agendaName;
13      private String termName;
14      private String docType;
15      private String incomingField;
16      private String existingField;
17      /**
18       * Gets the id attribute.
19       * @return  Returns the id.
20       */
21      public Integer getId() {
22          return id;
23      }
24      /**
25       * Sets the id attribute value.
26       * @param id  The id to set.
27       */
28      public void setId(Integer id) {
29          this.id = id;
30      }
31      /**
32       * Gets the agendaName attribute.
33       * @return  Returns the agendaName.
34       */
35      public String getAgendaName() {
36          return agendaName;
37      }
38      /**
39       * Sets the agendaName attribute value.
40       * @param agendaName  The agendaName to set.
41       */
42      public void setAgendaName(String agendaName) {
43          this.agendaName = agendaName;
44      }
45      /**
46       * Gets the termName attribute.
47       * @return  Returns the termName.
48       */
49      public String getTermName() {
50          return termName;
51      }
52      /**
53       * Sets the termName attribute value.
54       * @param termName  The termName to set.
55       */
56      public void setTermName(String termName) {
57          this.termName = termName;
58      }
59      /**
60       * Gets the docType attribute.
61       * @return  Returns the docType.
62       */
63      public String getDocType() {
64          return docType;
65      }
66      /**
67       * Sets the docType attribute value.
68       * @param docType  The docType to set.
69       */
70      public void setDocType(String docType) {
71          this.docType = docType;
72      }
73      /**
74       * Gets the incomingField attribute.
75       * @return  Returns the incomingField.
76       */
77      public String getIncomingField() {
78          return incomingField;
79      }
80      /**
81       * Sets the incomingField attribute value.
82       * @param incomingField  The incomingField to set.
83       */
84      public void setIncomingField(String incomingField) {
85          this.incomingField = incomingField;
86      }
87      /**
88       * Gets the existingField attribute.
89       * @return  Returns the existingField.
90       */
91      public String getExistingField() {
92          return existingField;
93      }
94      /**
95       * Sets the existingField attribute value.
96       * @param existingField  The existingField to set.
97       */
98      public void setExistingField(String existingField) {
99          this.existingField = existingField;
100     }
101 
102     /**
103      *
104      * @return     LinkedHashMap
105      */
106     protected LinkedHashMap toStringMapper() {
107         LinkedHashMap toStringMap = new LinkedHashMap();
108         toStringMap.put("id", id);
109         toStringMap.put("agendaName", agendaName);
110         toStringMap.put("termName", termName);
111         toStringMap.put("docType", docType);
112         toStringMap.put("incomingField", incomingField);
113         toStringMap.put("existingField", existingField);
114         return toStringMap;
115     }
116 }