1    package com.instantbank.collections.collectionsActivities.ejb;
2    
3    import java.rmi.RemoteException;
4    import javax.ejb.EJBObject;
5    import com.instantbank.collections.ach.DataObject;
6    import com.instantbank.collections.util.InstantbankException;
7    
8    public interface CollectionsActivitiesServices extends EJBObject {
9      public String getPromiseHistory(Long companyId, Long agrmId, Long rowNum) throws RemoteException, InstantbankException;
10   
11   
12     public Long getRowsPromiseHistory(Long companyId, Long agrmId) throws RemoteException, InstantbankException;
13   
14   
15     public void createDataObject(DataObject dataObject) throws RemoteException, InstantbankException;
16   
17   
18     public void updateDataObject(DataObject dataObject) throws RemoteException, InstantbankException;
19   
20   
21     public void removeDataObject(DataObject dataObject) throws RemoteException, InstantbankException;
22   }
23