1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5 /**
6 * Created with IntelliJ IDEA.
7 * User: ?
8 * Date: 21/6/12
9 * Time: 11:53 AM
10 * To change this template use File | Settings | File Templates.
11 */
12 public class OlePatronTelephoneNumberGroup {
13
14 private List<OlePatronTelePhoneNumber> telephoneNumber;
15
16 /**
17 * Gets the telephoneNumber attribute
18 * @return Returns the telephoneNumbers.
19 */
20 public List<OlePatronTelePhoneNumber> getTelephoneNumber() {
21 return telephoneNumber;
22 }
23
24 /**
25 * Sets the telephoneNumber attribute value.
26 * @param telephoneNumber .The telephoneNumbers to set.
27 */
28 public void setTelephoneNumber(List<OlePatronTelePhoneNumber> telephoneNumber) {
29 this.telephoneNumber = telephoneNumber;
30 }
31 }