@Override
public void execute(Event<UIEditInlineWorkspace> event) throws Exception {
UIEditInlineWorkspace uiEditInlineWorkspace = event.getSource();
UIConfirmation uiConfirmation = uiEditInlineWorkspace.getChild(UIConfirmation.class);
uiConfirmation.createEvent("Close", event.getExecutionPhase(), event.getRequestContext()).broadcast();
UIPortalComposer uiPortalComposer = uiEditInlineWorkspace.getChild(UIPortalComposer.class);
Event<UIComponent> abortEvent = uiPortalComposer.createEvent("Abort", event.getExecutionPhase(),
event.getRequestContext());
abortEvent.broadcast();