1 package org.kuali.ole.ingest.pojo;
2
3 /**
4 * OlePatronTelePhoneNumber is a business object class for Ole Patron Telephone Number Document
5 */
6 public class OlePatronTelePhoneNumber {
7
8 private String telephoneNumberType;
9 private String telephoneNumber;
10 private String extension;
11 private String country;
12 private boolean defaults;
13 private boolean active;
14 /**
15 * Gets the telephoneNumberType attribute.
16 * @return Returns the telephoneNumberType.
17 */
18 public String getTelephoneNumberType() {
19 return telephoneNumberType;
20 }
21 /**
22 * Sets the telephoneNumberType attribute value.
23 * @param telephoneNumberType The telephoneNumberType to set.
24 */
25 public void setTelephoneNumberType(String telephoneNumberType) {
26 this.telephoneNumberType = telephoneNumberType;
27 }
28 /**
29 * Gets the extension attribute.
30 * @return Returns the extension.
31 */
32 public String getExtension() {
33 return extension;
34 }
35 /**
36 * Sets the extension attribute value.
37 * @param extension The extension to set.
38 */
39 public void setExtension(String extension) {
40 this.extension = extension;
41 }
42 /**
43 * Gets the country attribute.
44 * @return Returns the country.
45 */
46 public String getCountry() {
47 return country;
48 }
49 /**
50 * Sets the country attribute value.
51 * @param country The country to set.
52 */
53 public void setCountry(String country) {
54 this.country = country;
55 }
56 /**
57 * Gets the active attribute.
58 * @return Returns the active.
59 */
60 public boolean isActive() {
61 return active;
62 }
63 /**
64 * Sets the active attribute value.
65 * @param active The active to set.
66 */
67 public void setActive(boolean active) {
68 this.active = active;
69 }
70 /**
71 * Gets the defaults attribute.
72 * @return Returns the defaults.
73 */
74 public boolean isDefaults() {
75 return defaults;
76 }
77 /**
78 * Sets the defaults attribute value.
79 * @param defaults The defaults to set.
80 */
81 public void setDefaults(boolean defaults) {
82 this.defaults = defaults;
83 }
84 /**
85 * Gets the telephoneNumber attribute.
86 * @return Returns the telephoneNumber.
87 */
88 public String getTelephoneNumber() {
89 return telephoneNumber;
90 }
91 /**
92 * Sets the telephoneNumber attribute value.
93 * @param telephoneNumber The telephoneNumber to set.
94 */
95 public void setTelephoneNumber(String telephoneNumber) {
96 this.telephoneNumber = telephoneNumber;
97 }
98 }