本文整理匯總了Java中org.eclipse.wst.server.core.util.ServerLifecycleAdapter類的典型用法代碼示例。如果您正苦於以下問題:Java ServerLifecycleAdapter類的具體用法?Java ServerLifecycleAdapter怎麽用?Java ServerLifecycleAdapter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ServerLifecycleAdapter類屬於org.eclipse.wst.server.core.util包,在下文中一共展示了ServerLifecycleAdapter類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: performFinish
import org.eclipse.wst.server.core.util.ServerLifecycleAdapter; //導入依賴的package包/類
@Override
public void performFinish(IProgressMonitor monitor) throws CoreException {
// Check the current credentials without server validation first, as if
// they are
// valid, there is no need to send a server request.
if (!validationHandler.isOK()) {
IStatus status = validationHandler.getNextNonOKEvent();
if (status == null) {
status = CloudFoundryPlugin.getErrorStatus(Messages.ERROR_UNKNOWN_SERVER_CREATION_ERROR);
}
throw new CoreException(status);
}
ServerLifecycleAdapter listener = new ServerLifecycleAdapter() {
@Override
public void serverAdded(IServer server) {
ServerCore.removeServerLifecycleListener(this);
Job job = new ConnectJob(cloudServer, server);
// this is getting called before
// CloudFoundryServer.saveConfiguration() has flushed the
// configuration therefore delay job
job.schedule(500L);
}
};
ServerCore.addServerLifecycleListener(listener);
dispose();
}
示例2: performFinish
import org.eclipse.wst.server.core.util.ServerLifecycleAdapter; //導入依賴的package包/類
@Override
public void performFinish(IProgressMonitor monitor) throws CoreException {
// Check the current credentials without server validation first, as if
// they are
// valid, there is no need to send a server request.
if (!validationHandler.isOK()) {
IStatus status = validationHandler.getNextNonOKEvent();
if (status == null) {
status = DockerFoundryPlugin.getErrorStatus(Messages.ERROR_UNKNOWN_SERVER_CREATION_ERROR);
}
throw new CoreException(status);
}
ServerLifecycleAdapter listener = new ServerLifecycleAdapter() {
@Override
public void serverAdded(IServer server) {
ServerCore.removeServerLifecycleListener(this);
Job job = new ConnectJob(cloudServer, server);
// this is getting called before
// CloudFoundryServer.saveConfiguration() has flushed the
// configuration therefore delay job
job.schedule(500L);
}
};
ServerCore.addServerLifecycleListener(listener);
dispose();
}