001package org.kuali.ole.ncip.bo;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: maheswarang
006 * Date: 4/30/14
007 * Time: 2:18 PM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OlePatronAddressBo {
011    private String addressTypeCode;
012    private String city;
013    private String stateProvinceCode;
014    private String postalCode;
015    private String countryCode;
016    private String line1;
017    private String line2;
018    private String line3;
019
020    public String getAddressTypeCode() {
021        return addressTypeCode;
022    }
023
024    public void setAddressTypeCode(String addressTypeCode) {
025        this.addressTypeCode = addressTypeCode;
026    }
027
028    public String getCity() {
029        return city;
030    }
031
032    public void setCity(String city) {
033        this.city = city;
034    }
035
036    public String getStateProvinceCode() {
037        return stateProvinceCode;
038    }
039
040    public void setStateProvinceCode(String stateProvinceCode) {
041        this.stateProvinceCode = stateProvinceCode;
042    }
043
044    public String getPostalCode() {
045        return postalCode;
046    }
047
048    public void setPostalCode(String postalCode) {
049        this.postalCode = postalCode;
050    }
051
052    public String getCountryCode() {
053        return countryCode;
054    }
055
056    public void setCountryCode(String countryCode) {
057        this.countryCode = countryCode;
058    }
059
060    public String getLine1() {
061        return line1;
062    }
063
064    public void setLine1(String line1) {
065        this.line1 = line1;
066    }
067
068    public String getLine2() {
069        return line2;
070    }
071
072    public void setLine2(String line2) {
073        this.line2 = line2;
074    }
075
076    public String getLine3() {
077        return line3;
078    }
079
080    public void setLine3(String line3) {
081        this.line3 = line3;
082    }
083}