@Override
public void onSuccess(final ApplyContext context) {
window = new DefaultWindow(Console.CONSTANTS.patch_manager_apply_patch());
window.setWidth(480);
window.setHeight(NORMAL_WINDOW_HEIGHT);
window.trapWidget(new ApplyWizard(PatchManagementPresenter.this, context,
Console.CONSTANTS.patch_manager_apply_patch(), dispatcher, patchManager).asWidget());
window.setGlassEnabled(true);
window.center();
}
};