1 package org.kuali.ole.batch.service;
2
3 import java.util.List;
4 import java.util.Map;
5
6 /**
7 * Created with IntelliJ IDEA.
8 * User: mjagan
9 * Date: 07/27/13
10 * Time: 4:40 PM
11 * To change this template use File | Settings | File Templates.
12 */
13 public interface BatchProcessDeleteService {
14
15 public int performBatchDelete(List docBibIds , String profileField) throws Exception;
16
17 public Map getBibIdsForBatchDelete(String searchMrcFieldData, String profileFiled) throws Exception;
18
19
20
21 }