1 package com.instantbank.collections.creditInfo.ejb; 2 3 import java.rmi.RemoteException; 4 import javax.ejb.EJBObject; 5 import com.instantbank.collections.util.InstantbankException; 6 7 public interface CreditInfoServices extends EJBObject { 8 public String getStatusCategoriesValues(Long companyId) throws RemoteException, InstantbankException; 9 10 11 public void saveStatusCategoriesValues(String data, Long companyId, Long userId) throws RemoteException, InstantbankException; 12 13 } 14