View Javadoc
1   package org.kuali.ole.service;
2   
3   import java.util.List;
4   
5   /**
6    * Created by IntelliJ IDEA.
7    * User: premkb
8    * Date: 12/2/12
9    * Time: 8:51 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public interface OverlayMatchingService {
13  
14      public List getInstanceCollectionOnLocationMatch(String locationName) throws Exception;
15  
16      public List getInstanceCollectionOnItemBarcodenMatch(String itemBarcode) throws Exception;
17  
18      public List getInstanceCollectionOnVendorLineItemIdentifierMatch(String vendorLineItenIdentifier) throws Exception;
19  
20      public List getBibInfoUsingUUID(String id) throws Exception;
21  }