1 package org.kuali.ole.ingest.pojo;
2
3 /**
4 * ProfileTerm is a business object class for Profile Term
5 */
6 public class ProfileTerm {
7 private String incomingField;
8 private String existingField;
9 /**
10 * Gets the incomingField attribute.
11 * @return Returns the incomingField.
12 */
13 public String getIncomingField() {
14 return incomingField;
15 }
16 /**
17 * Sets the incomingField attribute value.
18 * @param incomingField The incomingField to set.
19 */
20 public void setIncomingField(String incomingField) {
21 this.incomingField = incomingField;
22 }
23 /**
24 * Gets the existingField attribute.
25 * @return Returns the existingField.
26 */
27 public String getExistingField() {
28 return existingField;
29 }
30 /**
31 * Sets the existingField attribute value.
32 * @param existingField The existingField to set.
33 */
34 public void setExistingField(String existingField) {
35 this.existingField = existingField;
36 }
37 }