1 2 package SOFA.SOFAnode.Made.TIR; 3 import java.rmi.RemoteException ; 4 5 8 public interface ProfileDef extends TIRObject { 9 10 public String name() throws RemoteException ; 11 12 public Identification[] contents() throws RemoteException , TIRExceptLock; 13 14 public Identification lookup(String absoluteName) throws RemoteException , TIRExceptLock; 15 16 public boolean add(Identification a) throws RemoteException , TIRExceptLock, TIRExceptCreate; 17 18 public void remove(String absoluteName) throws RemoteException , TIRExceptLock, TIRExceptCreate; 19 } 20 | Popular Tags |