1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 6 public interface ManageProfiles extends TIRObject { 7 8 public ProfileDef[] all_profiles() throws RemoteException , TIRExceptLock; 9 10 public ProfileDef lookup(String name) throws RemoteException , TIRExceptLock; 11 12 public ProfileDef create_profile(String name) throws RemoteException , TIRExceptLock, TIRExceptCreate; 13 } 14 | Popular Tags |