View Javadoc
1   package org.kuali.ole.ncip.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: sheiksalahudeenm
6    * Date: 9/4/13
7    * Time: 11:46 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLELookupUserEntityAddressBo {
11      private String addressTypeCode;
12      private String city;
13      private String stateProvinceCode;
14      private String postalCode;
15      private String line1;
16  
17      public String getAddressTypeCode() {
18          return addressTypeCode;
19      }
20  
21      public void setAddressTypeCode(String addressTypeCode) {
22          this.addressTypeCode = addressTypeCode;
23      }
24  
25      public String getCity() {
26          return city;
27      }
28  
29      public void setCity(String city) {
30          this.city = city;
31      }
32  
33      public String getStateProvinceCode() {
34          return stateProvinceCode;
35      }
36  
37      public void setStateProvinceCode(String stateProvinceCode) {
38          this.stateProvinceCode = stateProvinceCode;
39      }
40  
41      public String getPostalCode() {
42          return postalCode;
43      }
44  
45      public void setPostalCode(String postalCode) {
46          this.postalCode = postalCode;
47      }
48  
49      public String getLine1() {
50          return line1;
51      }
52  
53      public void setLine1(String line1) {
54          this.line1 = line1;
55      }
56  }