1 /* $Id: ManageRepository.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.Remote ;4 import java.rmi.RemoteException ;5 6 /** Interface for magement of repository. */7 public interface ManageRepository extends Remote {8 /** Explicit save of repository. */9 public void save() throws RemoteException , TIRExceptSave; 10 /** Return array of active (not commited, not aborted) work repositories. */11 public WorkRepository[] getActiveWork() throws RemoteException ;12 }13