View Javadoc
1   package org.kuali.ole.ncip.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: maheswarang
6    * Date: 4/30/14
7    * Time: 2:18 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OlePatronAddressBo {
11      private String addressTypeCode;
12      private String city;
13      private String stateProvinceCode;
14      private String postalCode;
15      private String countryCode;
16      private String line1;
17      private String line2;
18      private String line3;
19  
20      public String getAddressTypeCode() {
21          return addressTypeCode;
22      }
23  
24      public void setAddressTypeCode(String addressTypeCode) {
25          this.addressTypeCode = addressTypeCode;
26      }
27  
28      public String getCity() {
29          return city;
30      }
31  
32      public void setCity(String city) {
33          this.city = city;
34      }
35  
36      public String getStateProvinceCode() {
37          return stateProvinceCode;
38      }
39  
40      public void setStateProvinceCode(String stateProvinceCode) {
41          this.stateProvinceCode = stateProvinceCode;
42      }
43  
44      public String getPostalCode() {
45          return postalCode;
46      }
47  
48      public void setPostalCode(String postalCode) {
49          this.postalCode = postalCode;
50      }
51  
52      public String getCountryCode() {
53          return countryCode;
54      }
55  
56      public void setCountryCode(String countryCode) {
57          this.countryCode = countryCode;
58      }
59  
60      public String getLine1() {
61          return line1;
62      }
63  
64      public void setLine1(String line1) {
65          this.line1 = line1;
66      }
67  
68      public String getLine2() {
69          return line2;
70      }
71  
72      public void setLine2(String line2) {
73          this.line2 = line2;
74      }
75  
76      public String getLine3() {
77          return line3;
78      }
79  
80      public void setLine3(String line3) {
81          this.line3 = line3;
82      }
83  }