View Javadoc
1   package org.kuali.ole.ncip.service;
2   
3   import org.kuali.ole.ncip.bo.OLERenewItemList;
4   
5   import java.util.List;
6   
7   /**
8    * Created by sheiksalahudeenm on 25/6/15.
9    */
10  public interface CirculationRestService {
11      public OLERenewItemList renewItems(String patronBarcode, String operator, List<String> itemBarcodes);
12  }