1 package org.kuali.ole.ncip.bo; 2 3 /** 4 * Created with IntelliJ IDEA. 5 * User: sambasivam 6 * Date: 9/12/13 7 * Time: 3:41 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public class OLELookupUserEntityPhoneBo { 11 private String phone; 12 private String typeCode; 13 14 public String getPhone() { 15 return phone; 16 } 17 18 public void setPhone(String phone) { 19 this.phone = phone; 20 } 21 22 public String getTypeCode() { 23 return typeCode; 24 } 25 26 public void setTypeCode(String typeCode) { 27 this.typeCode = typeCode; 28 } 29 }