de.kosi.admin
Interface AdminInterface

All Superinterfaces:
java.rmi.Remote
All Known Implementing Classes:
AdminInterfaceImpl

public interface AdminInterface
extends java.rmi.Remote

The administration interface gives the administration client a possibility to get a list of all configurable components.

ChangeLog:

 $Log: AdminInterface.java,v $
 Revision 1.3  2001/05/22 16:05:24  jiriki
 Made files more compliant to Coding Conventions.

 Revision 1.2  2001/05/22 10:16:02  jiriki
 - Removed old unused Client class
 - Removed unused import statements.

 Revision 1.1.1.1  2001/04/29 18:05:15  jiriki
 Imported sources from zola.

 Revision 1.2  2001/03/14 18:40:44  wombat
 Updated Documentation, removed bugs in Gui factory

 

Version:
$Revision: 1.3 $ ($Date: 2001/05/22 16:05:24 $)
Author:
Niklas Mehner

Method Summary
 Configurable getConfigurable(java.lang.String name)
          Return a Configurable interface for a given name.
 java.util.Collection getConfigurableEntries()
          Return the names of the configurable entries.
 

Method Detail

getConfigurableEntries

public java.util.Collection getConfigurableEntries()
                                            throws java.rmi.RemoteException
Return the names of the configurable entries.
Returns:
A Collection containing String values.
Throws:
java.rmi.RemoteException - if the remote call fails.

getConfigurable

public Configurable getConfigurable(java.lang.String name)
                             throws java.rmi.RemoteException
Return a Configurable interface for a given name.
Parameters:
name - Name of the Configurable to return.
Returns:
Configurable, or null if there is no Configurable of this name.
Throws:
java.rmi.RemoteException - if the remote call fails.