001package org.kuali.ole.select.bo; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: vivekb 006 * Date: 4/2/14 007 * Time: 11:50 AM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class OLEClaimingAddress { 011 private String vendorName; 012 private String attention; 013 private String address1; 014 private String address2; 015 private String city; 016 private String state; 017 private String postalCode; 018 private String province; 019 private String country; 020 private String institutionName; 021 022 023 024 public String getVendorName() { 025 return vendorName; 026 } 027 028 public void setVendorName(String vendorName) { 029 this.vendorName = vendorName; 030 } 031 032 public String getAttention() { 033 return attention; 034 } 035 036 public void setAttention(String attention) { 037 this.attention = attention; 038 } 039 040 public String getAddress1() { 041 return address1; 042 } 043 044 public void setAddress1(String address1) { 045 this.address1 = address1; 046 } 047 048 public String getAddress2() { 049 return address2; 050 } 051 052 public void setAddress2(String address2) { 053 this.address2 = address2; 054 } 055 056 public String getCity() { 057 return city; 058 } 059 060 public void setCity(String city) { 061 this.city = city; 062 } 063 064 public String getState() { 065 return state; 066 } 067 068 public void setState(String state) { 069 this.state = state; 070 } 071 072 public String getPostalCode() { 073 return postalCode; 074 } 075 076 public void setPostalCode(String postalCode) { 077 this.postalCode = postalCode; 078 } 079 080 public String getProvince() { 081 return province; 082 } 083 084 public void setProvince(String province) { 085 this.province = province; 086 } 087 088 public String getCountry() { 089 return country; 090 } 091 092 public void setCountry(String country) { 093 this.country = country; 094 } 095 096 public String getInstitutionName() { 097 return institutionName; 098 } 099 100 public void setInstitutionName(String institutionName) { 101 this.institutionName = institutionName; 102 } 103}