private void showUIConfirmation() {
UIConfirmation uiConfirmation = getChild(UIConfirmation.class);
uiConfirmation.setActions(makeActionConfirmList());
uiConfirmation.setCaller(this);
uiConfirmation.addMessage(MSG_CONFIRM);
uiConfirmation.setShow(true);
setRenderedChild(UIConfirmation.class);
}