KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > TIR > ManageProfiles


1 /* $Id: ManageProfiles.java,v 1.2 2004/05/20 14:23:51 bures Exp $ */
2 package SOFA.SOFAnode.Made.TIR;
3 import java.rmi.RemoteException JavaDoc;
4
5 /** Interface for magement of profiles */
6 public interface ManageProfiles extends TIRObject {
7   /** Returns all defined profiles */
8   public ProfileDef[] all_profiles() throws RemoteException JavaDoc, TIRExceptLock;
9   /** Search profile with given name */
10   public ProfileDef lookup(String JavaDoc name) throws RemoteException JavaDoc, TIRExceptLock;
11   /** Create new profile */
12   public ProfileDef create_profile(String JavaDoc name) throws RemoteException JavaDoc, TIRExceptLock, TIRExceptCreate;
13 }
14
Popular Tags