1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5 /**
6 * OlePatronNotesGroup is a business object class for Ole Patron Notes Group Document
7 */
8 public class OlePatronNotesGroup {
9
10 private List<OlePatronNote> note;
11
12 /**
13 * Gets the note attribute
14 * @return Returns the note.
15 */
16 public List<OlePatronNote> getNote() {
17 return note;
18 }
19
20 /**
21 * Sets the note attribute value
22 * @param note The note to set.
23 */
24 public void setNote(List<OlePatronNote> note) {
25 this.note = note;
26 }
27 }