001package org.kuali.ole.ncip.bo;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: sheiksalahudeenm
006 * Date: 9/4/13
007 * Time: 11:46 AM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OLELookupUserEntityAddressBo {
011    private String addressTypeCode;
012    private String city;
013    private String stateProvinceCode;
014    private String postalCode;
015    private String line1;
016
017    public String getAddressTypeCode() {
018        return addressTypeCode;
019    }
020
021    public void setAddressTypeCode(String addressTypeCode) {
022        this.addressTypeCode = addressTypeCode;
023    }
024
025    public String getCity() {
026        return city;
027    }
028
029    public void setCity(String city) {
030        this.city = city;
031    }
032
033    public String getStateProvinceCode() {
034        return stateProvinceCode;
035    }
036
037    public void setStateProvinceCode(String stateProvinceCode) {
038        this.stateProvinceCode = stateProvinceCode;
039    }
040
041    public String getPostalCode() {
042        return postalCode;
043    }
044
045    public void setPostalCode(String postalCode) {
046        this.postalCode = postalCode;
047    }
048
049    public String getLine1() {
050        return line1;
051    }
052
053    public void setLine1(String line1) {
054        this.line1 = line1;
055    }
056}