com.openexchange.admin.rmi
Interface OXAdminCoreInterface

All Superinterfaces:
Remote

public interface OXAdminCoreInterface
extends Remote

This interface defines a method for checking loaded plugins in the Open-Xchange Admin Daemon.

Example:

 final OXAdminCoreInterface iface = (OXAdminCoreInterface)Naming.lookup("rmi:///oxhost/"+OXAdminCoreInterface.RMI_NAME);
 
 if (iface.allPluginsLoaded()) {
        System.out.println("All plugins loaded");
 }
 

Author:
Manuel Kraft, Carsten Hoeger, Dennis Sieben

Field Summary
static String RMI_NAME
          RMI name to be used in the naming lookup.
 
Method Summary
 boolean allPluginsLoaded()
          This methods checks if all plugins have been loaded successfully
 

Field Detail

RMI_NAME

static final String RMI_NAME
RMI name to be used in the naming lookup.

See Also:
Constant Field Values
Method Detail

allPluginsLoaded

boolean allPluginsLoaded()
                         throws RemoteException
This methods checks if all plugins have been loaded successfully

Returns:
true if all plugins are loaded successfully, false if not
Throws:
RemoteException