Methods Summary |
---|
public void | onAbort(int port)Server startup has failed. This could be due to a port conflict exception.
In case of port conflict exception, port will be >0. Set the RMI channel server
status to kInstanceFailed.
AdminChannel.setRMIChannelAborting(port);
|
public void | onInitialization(com.sun.enterprise.server.ServerContext context)Server is Inililize the AdminChannel.
if (status < INITIALIZED) {
status = INITIALIZED;
AdminChannel.createRMIChannel();
AdminChannel.createSharedSecret();
}
|
public void | onReady(com.sun.enterprise.server.ServerContext context)Server is ready.
if (status < READY) {
status = READY;
AdminChannel.setRMIChannelReady();
}
|
public void | onShutdown()Server is shutting down applications
if (status < SHUTDOWN) {
status = SHUTDOWN;
AdminChannel.setRMIChannelStopping();
AdminChannel.destroyRMIChannel();
}
|