View Javadoc

1   package org.kuali.ole.service;
2   
3   import org.kuali.ole.docstore.model.xmlpojo.work.bib.marc.DataField;
4   import org.kuali.ole.docstore.model.xmlpojo.work.bib.marc.SubField;
5   import org.kuali.ole.ingest.pojo.OverlayLookupAction;
6   
7   import java.util.HashMap;
8   import java.util.List;
9   
10  /**
11   * Created by IntelliJ IDEA.
12   * User: premkb
13   * Date: 2/2/13
14   * Time: 7:29 PM
15   * To change this template use File | Settings | File Templates.
16   */
17  public interface OverlayLookupTableService {
18  
19      public String getFieldValueFromSubField(String incomingField, HashMap<String, SubField> subFieldMap)throws Exception;
20  
21      public void updateDataToDocstoreInstance(OverlayLookupAction overlayLookupAction, List<DataField> dataFieldList, HashMap<String, String> uuids)throws Exception;
22  
23  
24  }