com.openexchange.admin.rmi
Interface OXAdminCoreInterface
- All Superinterfaces:
- java.rmi.Remote
- All Known Implementing Classes:
- OXAdminCoreImpl
public interface OXAdminCoreInterface
- extends java.rmi.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 java.lang.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 |
RMI_NAME
static final java.lang.String RMI_NAME
- RMI name to be used in the naming lookup.
- See Also:
- Constant Field Values
allPluginsLoaded
boolean allPluginsLoaded()
throws java.rmi.RemoteException
- This methods checks if all plugins have been loaded successfully
- Returns:
- true if all plugins are loaded successfully, false if not
- Throws:
java.rmi.RemoteException