View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import java.sql.Date;
4   import java.util.List;
5   
6   /**
7    * OlePatronPostalAddress is a business object class for Ole Patron Postal Address Document
8    */
9   public class OlePatronPostalAddress {
10      private String postalAddressType;
11      private List<OleAddressLine> addressLinesList;
12      private String country;
13      private String city;
14      private String stateProvince;
15      private String postalCode;
16      private String addressSource;
17      private Date addressValidTo;
18      private Date addressValidFrom;
19      private boolean addressVerified;
20      private boolean defaults;
21      private boolean active;
22      /**
23       * Gets the postalAddressType attribute.
24       * @return  Returns the postalAddressType.
25       */
26      public String getPostalAddressType() {
27          return postalAddressType;
28      }
29      /**
30       * Sets the postalAddressType attribute value.
31       * @param postalAddressType The postalAddressType to set.
32       */
33      public void setPostalAddressType(String postalAddressType) {
34          this.postalAddressType = postalAddressType;
35      }
36      /**
37       * Gets the addressLinesList attribute.
38       * @return  Returns the addressLinesList.
39       */
40      public List<OleAddressLine> getAddressLinesList() {
41          return addressLinesList;
42      }
43      /**
44       * Sets the addressLinesList attribute value.
45       * @param addressLinesList The addressLinesList to set.
46       */
47      public void setAddressLinesList(List<OleAddressLine> addressLinesList) {
48          this.addressLinesList = addressLinesList;
49      }
50      /**
51       * Gets the country attribute.
52       * @return  Returns the country.
53       */
54      public String getCountry() {
55          return country;
56      }
57      /**
58       * Sets the country attribute value.
59       * @param country The country to set.
60       */
61      public void setCountry(String country) {
62          this.country = country;
63      }
64      /**
65       * Gets the city attribute.
66       * @return  Returns the city.
67       */
68      public String getCity() {
69          return city;
70      }
71      /**
72       * Sets the city attribute value.
73       * @param city The city to set.
74       */
75      public void setCity(String city) {
76          this.city = city;
77      }
78      /**
79       * Gets the stateProvince attribute.
80       * @return  Returns the stateProvince.
81       */
82      public String getStateProvince() {
83          return stateProvince;
84      }
85      /**
86       * Sets the stateProvince attribute value.
87       * @param stateProvince The stateProvince to set.
88       */
89      public void setStateProvince(String stateProvince) {
90          this.stateProvince = stateProvince;
91      }
92      /**
93       * Gets the postalCode attribute.
94       * @return  Returns the postalCode.
95       */
96      public String getPostalCode() {
97          return postalCode;
98      }
99      /**
100      * Sets the postalCode attribute value.
101      * @param postalCode The postalCode to set.
102      */
103     public void setPostalCode(String postalCode) {
104         this.postalCode = postalCode;
105     }
106     /**
107      * Gets the active attribute.
108      * @return  Returns the active.
109      */
110     public boolean isActive() {
111         return active;
112     }
113     /**
114      * Sets the active attribute value.
115      * @param active The active to set.
116      */
117     public void setActive(boolean active) {
118         this.active = active;
119     }
120     /**
121      * Gets the defaults attribute.
122      * @return  Returns the defaults.
123      */
124     public boolean isDefaults() {
125         return defaults;
126     }
127     /**
128      * Sets the defaults attribute value.
129      * @param defaults The defaults to set.
130      */
131     public void setDefaults(boolean defaults) {
132         this.defaults = defaults;
133     }
134     /**
135      * Gets the addressValidTo attribute.
136      * @return  Returns the addressValidTo.
137      */
138     public Date getAddressValidTo() {
139         return addressValidTo;
140     }
141     /**
142      * Sets the addressValidTo attribute value.
143      * @param addressValidTo The addressValidTo to set.
144      */
145     public void setAddressValidTo(Date addressValidTo) {
146         this.addressValidTo = addressValidTo;
147     }
148     /**
149      * Gets the addressValidFrom attribute.
150      * @return  Returns the addressValidFrom.
151      */
152     public Date getAddressValidFrom() {
153         return addressValidFrom;
154     }
155     /**
156      * Sets the addressValidFrom attribute value.
157      * @param addressValidFrom The addressValidFrom to set.
158      */
159     public void setAddressValidFrom(Date addressValidFrom) {
160         this.addressValidFrom = addressValidFrom;
161     }
162     /**
163      * Gets the addressVerified attribute.
164      * @return  Returns the addressVerified.
165      */
166     public boolean isAddressVerified() {
167         return addressVerified;
168     }
169 
170 
171     /**
172      * Sets the addressVerified attribute value.
173      * @param addressVerified The addressVerified to set.
174      */
175     public void setAddressVerified(boolean addressVerified) {
176         this.addressVerified = addressVerified;
177     }
178 
179     public String getAddressSource() {
180         return addressSource;
181     }
182 
183     public void setAddressSource(String addressSource) {
184         this.addressSource = addressSource;
185     }
186 }