1 package org.kuali.ole.systemintegration.rest.bo;
2
3 import com.thoughtworks.xstream.annotations.XStreamAlias;
4
5 import javax.xml.bind.annotation.XmlRootElement;
6 import javax.xml.bind.annotation.XmlType;
7 import java.util.List;
8
9 /**
10 * Created with IntelliJ IDEA.
11 * User: srirams
12 * Date: 4/22/14
13 * Time: 3:18 PM
14 * To change this template use File | Settings | File Templates.
15 */
16 public class Indexes {
17
18 List<SerialReceivingIndex> index;
19
20 public List<SerialReceivingIndex> getIndex() {
21 return index;
22 }
23
24 public void setIndex(List<SerialReceivingIndex> index) {
25 this.index = index;
26 }
27 }