1   package org.kuali.ole.service;
2   
3   import java.util.List;
4   
5   
6   
7   
8   
9   
10  
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  }