View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: vivekb
6    * Date: 4/2/14
7    * Time: 11:50 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLEClaimingAddress {
11      private String vendorName;
12      private String attention;
13      private String address1;
14      private String address2;
15      private String city;
16      private String state;
17      private String postalCode;
18      private String province;
19      private String country;
20      private String institutionName;
21  
22  
23  
24      public String getVendorName() {
25          return vendorName;
26      }
27  
28      public void setVendorName(String vendorName) {
29          this.vendorName = vendorName;
30      }
31  
32      public String getAttention() {
33          return attention;
34      }
35  
36      public void setAttention(String attention) {
37          this.attention = attention;
38      }
39  
40      public String getAddress1() {
41          return address1;
42      }
43  
44      public void setAddress1(String address1) {
45          this.address1 = address1;
46      }
47  
48      public String getAddress2() {
49          return address2;
50      }
51  
52      public void setAddress2(String address2) {
53          this.address2 = address2;
54      }
55  
56      public String getCity() {
57          return city;
58      }
59  
60      public void setCity(String city) {
61          this.city = city;
62      }
63  
64      public String getState() {
65          return state;
66      }
67  
68      public void setState(String state) {
69          this.state = state;
70      }
71  
72      public String getPostalCode() {
73          return postalCode;
74      }
75  
76      public void setPostalCode(String postalCode) {
77          this.postalCode = postalCode;
78      }
79  
80      public String getProvince() {
81          return province;
82      }
83  
84      public void setProvince(String province) {
85          this.province = province;
86      }
87  
88      public String getCountry() {
89          return country;
90      }
91  
92      public void setCountry(String country) {
93          this.country = country;
94      }
95  
96      public String getInstitutionName() {
97          return institutionName;
98      }
99  
100     public void setInstitutionName(String institutionName) {
101         this.institutionName = institutionName;
102     }
103 }