public static class ShowLoginFormActionListener extends EventListener<UIPortalComponent> {
public void execute(Event<UIPortalComponent> event) throws Exception {
UIPortal uiPortal = Util.getUIPortal();
UIPortalApplication uiApp = uiPortal.getAncestorOfType(UIPortalApplication.class);
UIMaskWorkspace uiMaskWS = uiApp.getChildById(UIPortalApplication.UI_MASK_WS_ID);
UILogin uiLogin = uiMaskWS.createUIComponent(UILogin.class, null, null);
uiMaskWS.setUIComponent(uiLogin);
uiMaskWS.setWindowSize(630, -1);
event.getRequestContext().addUIComponentToUpdateByAjax(uiMaskWS);
}
}