001package org.kuali.ole.ingest.pojo; 002 003import java.util.List; 004 005/** 006 * OlePatronTelephoneNumberGroup is a business object class for Ole Patron Telephone Number Group Document 007 */ 008public class OlePatronTelephoneNumberGroup { 009 010 private List<OlePatronTelePhoneNumber> telephoneNumber; 011 012 /** 013 * Gets the telephoneNumber attribute 014 * @return Returns the telephoneNumbers. 015 */ 016 public List<OlePatronTelePhoneNumber> getTelephoneNumber() { 017 return telephoneNumber; 018 } 019 020 /** 021 * Sets the telephoneNumber attribute value. 022 * @param telephoneNumber .The telephoneNumbers to set. 023 */ 024 public void setTelephoneNumber(List<OlePatronTelePhoneNumber> telephoneNumber) { 025 this.telephoneNumber = telephoneNumber; 026 } 027}