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      private boolean deliverAddress;
23      /**
24       * Gets the postalAddressType attribute.
25       * @return  Returns the postalAddressType.
26       */
27      public String getPostalAddressType() {
28          return postalAddressType;
29      }
30      /**
31       * Sets the postalAddressType attribute value.
32       * @param postalAddressType The postalAddressType to set.
33       */
34      public void setPostalAddressType(String postalAddressType) {
35          this.postalAddressType = postalAddressType;
36      }
37      /**
38       * Gets the addressLinesList attribute.
39       * @return  Returns the addressLinesList.
40       */
41      public List<OleAddressLine> getAddressLinesList() {
42          return addressLinesList;
43      }
44      /**
45       * Sets the addressLinesList attribute value.
46       * @param addressLinesList The addressLinesList to set.
47       */
48      public void setAddressLinesList(List<OleAddressLine> addressLinesList) {
49          this.addressLinesList = addressLinesList;
50      }
51      /**
52       * Gets the country attribute.
53       * @return  Returns the country.
54       */
55      public String getCountry() {
56          return country;
57      }
58      /**
59       * Sets the country attribute value.
60       * @param country The country to set.
61       */
62      public void setCountry(String country) {
63          this.country = country;
64      }
65      /**
66       * Gets the city attribute.
67       * @return  Returns the city.
68       */
69      public String getCity() {
70          return city;
71      }
72      /**
73       * Sets the city attribute value.
74       * @param city The city to set.
75       */
76      public void setCity(String city) {
77          this.city = city;
78      }
79      /**
80       * Gets the stateProvince attribute.
81       * @return  Returns the stateProvince.
82       */
83      public String getStateProvince() {
84          return stateProvince;
85      }
86      /**
87       * Sets the stateProvince attribute value.
88       * @param stateProvince The stateProvince to set.
89       */
90      public void setStateProvince(String stateProvince) {
91          this.stateProvince = stateProvince;
92      }
93      /**
94       * Gets the postalCode attribute.
95       * @return  Returns the postalCode.
96       */
97      public String getPostalCode() {
98          return postalCode;
99      }
100     /**
101      * Sets the postalCode attribute value.
102      * @param postalCode The postalCode to set.
103      */
104     public void setPostalCode(String postalCode) {
105         this.postalCode = postalCode;
106     }
107     /**
108      * Gets the active attribute.
109      * @return  Returns the active.
110      */
111     public boolean isActive() {
112         return active;
113     }
114     /**
115      * Sets the active attribute value.
116      * @param active The active to set.
117      */
118     public void setActive(boolean active) {
119         this.active = active;
120     }
121     /**
122      * Gets the defaults attribute.
123      * @return  Returns the defaults.
124      */
125     public boolean isDefaults() {
126         return defaults;
127     }
128     /**
129      * Sets the defaults attribute value.
130      * @param defaults The defaults to set.
131      */
132     public void setDefaults(boolean defaults) {
133         this.defaults = defaults;
134     }
135     /**
136      * Gets the addressValidTo attribute.
137      * @return  Returns the addressValidTo.
138      */
139     public Date getAddressValidTo() {
140         return addressValidTo;
141     }
142     /**
143      * Sets the addressValidTo attribute value.
144      * @param addressValidTo The addressValidTo to set.
145      */
146     public void setAddressValidTo(Date addressValidTo) {
147         this.addressValidTo = addressValidTo;
148     }
149     /**
150      * Gets the addressValidFrom attribute.
151      * @return  Returns the addressValidFrom.
152      */
153     public Date getAddressValidFrom() {
154         return addressValidFrom;
155     }
156     /**
157      * Sets the addressValidFrom attribute value.
158      * @param addressValidFrom The addressValidFrom to set.
159      */
160     public void setAddressValidFrom(Date addressValidFrom) {
161         this.addressValidFrom = addressValidFrom;
162     }
163     /**
164      * Gets the addressVerified attribute.
165      * @return  Returns the addressVerified.
166      */
167     public boolean isAddressVerified() {
168         return addressVerified;
169     }
170 
171 
172     /**
173      * Sets the addressVerified attribute value.
174      * @param addressVerified The addressVerified to set.
175      */
176     public void setAddressVerified(boolean addressVerified) {
177         this.addressVerified = addressVerified;
178     }
179 
180     public String getAddressSource() {
181         return addressSource;
182     }
183 
184     public void setAddressSource(String addressSource) {
185         this.addressSource = addressSource;
186     }
187 
188     public boolean isDeliverAddress() {
189         return deliverAddress;
190     }
191 
192     public void setDeliverAddress(boolean deliverAddress) {
193         this.deliverAddress = deliverAddress;
194     }
195 }