Search in sources :

Example 36 with ApplicationExceptions

use of org.jaffa.exceptions.ApplicationExceptions in project jaffa-framework by jaffa-projects.

the class FormEventViewerAction method do_Delete_Clicked.

// .//GEN-END:_do_Update_Clicked_4_be
// .//GEN-BEGIN:_do_Delete_Clicked_1_be
/**
 * Invokes the deleteObject() method on the component.
 * @return The FormKey for the Delete screen.
 */
public FormKey do_Delete_Clicked() {
    FormKey fk = null;
    // .//GEN-END:_do_Delete_Clicked_1_be
    // Add custom code before processing the action //GEN-FIRST:_do_Delete_Clicked_1
    // .//GEN-LAST:_do_Delete_Clicked_1
    // .//GEN-BEGIN:_do_Delete_Clicked_2_be
    FormEventViewerForm myForm = (FormEventViewerForm) form;
    FormEventViewerComponent myComp = (FormEventViewerComponent) myForm.getComponent();
    try {
        // .//GEN-END:_do_Delete_Clicked_2_be
        // Add custom code before invoking the component //GEN-FIRST:_do_Delete_Clicked_2
        // .//GEN-LAST:_do_Delete_Clicked_2
        // .//GEN-BEGIN:_do_Delete_Clicked_3_be
        fk = myComp.deleteObject();
    } catch (ApplicationExceptions e) {
        if (log.isDebugEnabled())
            log.debug("Delete Failed");
        myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
    } catch (FrameworkException e) {
        log.error(null, e);
        myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
    }
    // Direct User back to current form
    if (fk == null)
        fk = myComp.getViewerFormKey();
    return fk;
}
Also used : ApplicationExceptions(org.jaffa.exceptions.ApplicationExceptions) FrameworkException(org.jaffa.exceptions.FrameworkException) FormKey(org.jaffa.presentation.portlet.FormKey)

Example 37 with ApplicationExceptions

use of org.jaffa.exceptions.ApplicationExceptions in project jaffa-framework by jaffa-projects.

the class FormEventViewerAction method do_RelatedFormUsage_Update_Clicked.

// .//GEN-END:do_RelatedFormUsage_View_Clicked_4_be
// .//GEN-BEGIN:do_RelatedFormUsage_Update_Clicked_1_be
/**
 * Invokes the updateFormUsage() method on the component.
 * @param rowNum The selected row on the Grid.
 * @return The FormKey for the Update screen of the FormUsage object.
 */
public FormKey do_RelatedFormUsage_Update_Clicked(String rowNum) {
    FormKey fk = null;
    // .//GEN-END:do_RelatedFormUsage_Update_Clicked_1_be
    // Add custom code before processing the action //GEN-FIRST:do_RelatedFormUsage_Update_Clicked_1
    // .//GEN-LAST:do_RelatedFormUsage_Update_Clicked_1
    // .//GEN-BEGIN:do_RelatedFormUsage_Update_Clicked_2_be
    FormEventViewerForm myForm = (FormEventViewerForm) form;
    FormEventViewerComponent myComp = (FormEventViewerComponent) myForm.getComponent();
    GridModel model = (GridModel) myForm.getRelatedFormUsageWM();
    GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
    if (selectedRow != null) {
        try {
            // .//GEN-END:do_RelatedFormUsage_Update_Clicked_2_be
            // Add custom code before invoking the component //GEN-FIRST:do_RelatedFormUsage_Update_Clicked_2
            // .//GEN-LAST:do_RelatedFormUsage_Update_Clicked_2
            // .//GEN-BEGIN:do_RelatedFormUsage_Update_Clicked_3_be
            fk = myComp.updateFormUsage((java.lang.String) selectedRow.get("formName"));
        } catch (ApplicationExceptions e) {
            if (log.isDebugEnabled())
                log.debug("Updator Failed");
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
        } catch (FrameworkException e) {
            log.error(null, e);
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
        }
    }
    // .//GEN-BEGIN:do_RelatedFormUsage_Update_Clicked_4_be
    if (fk == null)
        fk = new FormKey(myForm.NAME, myComp.getComponentId());
    return fk;
}
Also used : ApplicationExceptions(org.jaffa.exceptions.ApplicationExceptions) FrameworkException(org.jaffa.exceptions.FrameworkException) GridModel(org.jaffa.presentation.portlet.widgets.model.GridModel) FormKey(org.jaffa.presentation.portlet.FormKey) GridModelRow(org.jaffa.presentation.portlet.widgets.model.GridModelRow)

Example 38 with ApplicationExceptions

use of org.jaffa.exceptions.ApplicationExceptions in project jaffa-framework by jaffa-projects.

the class FormEventViewerAction method do_RelatedFormUsage_View_Clicked.

/**
 * Invokes the viewFormUsage() method on the component.
 * @param rowNum The selected row on the Grid.
 * @return The FormKey for the View screen of the FormUsage object.
 */
public FormKey do_RelatedFormUsage_View_Clicked(String rowNum) {
    FormKey fk = null;
    // .//GEN-END:do_RelatedFormUsage_View_Clicked_1_be
    // Add custom code before processing the action //GEN-FIRST:do_RelatedFormUsage_View_Clicked_1
    // .//GEN-LAST:do_RelatedFormUsage_View_Clicked_1
    // .//GEN-BEGIN:do_RelatedFormUsage_View_Clicked_2_be
    FormEventViewerForm myForm = (FormEventViewerForm) form;
    FormEventViewerComponent myComp = (FormEventViewerComponent) myForm.getComponent();
    GridModel model = (GridModel) myForm.getRelatedFormUsageWM();
    GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
    if (selectedRow != null) {
        try {
            // .//GEN-END:do_RelatedFormUsage_View_Clicked_2_be
            // Add custom code before invoking the component //GEN-FIRST:do_RelatedFormUsage_View_Clicked_2
            // .//GEN-LAST:do_RelatedFormUsage_View_Clicked_2
            // .//GEN-BEGIN:do_RelatedFormUsage_View_Clicked_3_be
            fk = myComp.viewFormUsage((java.lang.String) selectedRow.get("formName"));
        } catch (ApplicationExceptions e) {
            if (log.isDebugEnabled())
                log.debug("Viewer Failed");
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
        } catch (FrameworkException e) {
            log.error(null, e);
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
        }
    }
    // .//GEN-END:do_RelatedFormUsage_View_Clicked_3_be
    // Add custom code before returning //GEN-FIRST:do_RelatedFormUsage_View_Clicked_3
    // .//GEN-LAST:do_RelatedFormUsage_View_Clicked_3
    // .//GEN-BEGIN:do_RelatedFormUsage_View_Clicked_4_be
    // The Viewer will be rendered in a new window
    // We don't want to see the existing HistoryNav in that window
    // Hence, initialize the HistoryNav
    HistoryNav.initializeHistoryNav(request);
    // Direct User back to current form
    if (fk == null)
        fk = new FormKey(myForm.NAME, myComp.getComponentId());
    return fk;
}
Also used : ApplicationExceptions(org.jaffa.exceptions.ApplicationExceptions) FrameworkException(org.jaffa.exceptions.FrameworkException) GridModel(org.jaffa.presentation.portlet.widgets.model.GridModel) FormKey(org.jaffa.presentation.portlet.FormKey) GridModelRow(org.jaffa.presentation.portlet.widgets.model.GridModelRow)

Example 39 with ApplicationExceptions

use of org.jaffa.exceptions.ApplicationExceptions in project jaffa-framework by jaffa-projects.

the class FormEventViewerComponent method display.

// .//GEN-END:_FormEventViewerOutDto_1_be
// .//GEN-BEGIN:_display_1_be
/**
 * This retrieves the details for the FormEvent.
 * @throws ApplicationExceptions This will be thrown in case any invalid data has been set, or if no data has been set.
 * @throws FrameworkException Indicates some system error.
 * @return The FormKey for the View screen.
 */
public FormKey display() throws ApplicationExceptions, FrameworkException {
    ApplicationExceptions appExps = null;
    // .//GEN-BEGIN:_display_2_be
    if (getEventName() == null) {
        if (appExps == null)
            appExps = new ApplicationExceptions();
        appExps.add(new MandatoryFieldException(FormEventMeta.META_EVENT_NAME.getLabelToken()));
    }
    if (appExps != null && appExps.size() > 0)
        throw appExps;
    doInquiry();
    return getViewerFormKey();
}
Also used : ApplicationExceptions(org.jaffa.exceptions.ApplicationExceptions) MandatoryFieldException(org.jaffa.datatypes.exceptions.MandatoryFieldException)

Example 40 with ApplicationExceptions

use of org.jaffa.exceptions.ApplicationExceptions in project jaffa-framework by jaffa-projects.

the class FormGroupFinderAction method do_Rows_View_Clicked.

// .//GEN-END:_do_CreateFromResults_Clicked_4_be
// .//GEN-BEGIN:_do_Rows_View_Clicked_1_be
/**
 * Invokes the viewObject() method on the component.
 * @param rowNum The selected row on the Results screen.
 * @return The FormKey for the View screen.
 */
public FormKey do_Rows_View_Clicked(String rowNum) {
    FormKey fk = null;
    // .//GEN-END:_do_Rows_View_Clicked_1_be
    // Add custom code before processing the action //GEN-FIRST:_do_Rows_View_Clicked_1
    // .//GEN-LAST:_do_Rows_View_Clicked_1
    // .//GEN-BEGIN:_do_Rows_View_Clicked_2_be
    FormGroupFinderForm myForm = (FormGroupFinderForm) form;
    FormGroupFinderComponent myComp = (FormGroupFinderComponent) myForm.getComponent();
    GridModel model = (GridModel) myForm.getRowsWM();
    GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
    if (selectedRow != null) {
        try {
            // .//GEN-END:_do_Rows_View_Clicked_2_be
            // Add custom code before invoking the component //GEN-FIRST:_do_Rows_View_Clicked_2
            // .//GEN-LAST:_do_Rows_View_Clicked_2
            // .//GEN-BEGIN:_do_Rows_View_Clicked_3_be
            fk = myComp.viewObject((java.lang.String) selectedRow.get("formName"));
        } catch (ApplicationExceptions e) {
            if (log.isDebugEnabled())
                log.debug("Viewer Failed");
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
        } catch (FrameworkException e) {
            log.error(null, e);
            myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
        }
    }
    // .//GEN-END:_do_Rows_View_Clicked_3_be
    // Add custom code after returning from the component //GEN-FIRST:_do_Rows_View_Clicked_3
    // .//GEN-LAST:_do_Rows_View_Clicked_3
    // .//GEN-BEGIN:_do_Rows_View_Clicked_4_be
    // The Viewer will be rendered in a new window
    // We don't want to see the existing HistoryNav in that window
    // Hence, initialize the HistoryNav
    HistoryNav.initializeHistoryNav(request);
    // Direct User back to current form
    if (fk == null)
        fk = myComp.getResultsFormKey();
    return fk;
}
Also used : ApplicationExceptions(org.jaffa.exceptions.ApplicationExceptions) FrameworkException(org.jaffa.exceptions.FrameworkException) GridModel(org.jaffa.presentation.portlet.widgets.model.GridModel) FormKey(org.jaffa.presentation.portlet.FormKey) GridModelRow(org.jaffa.presentation.portlet.widgets.model.GridModelRow)

Aggregations

ApplicationExceptions (org.jaffa.exceptions.ApplicationExceptions)575 FrameworkException (org.jaffa.exceptions.FrameworkException)307 FormKey (org.jaffa.presentation.portlet.FormKey)205 ApplicationException (org.jaffa.exceptions.ApplicationException)116 GridModel (org.jaffa.presentation.portlet.widgets.model.GridModel)104 GridModelRow (org.jaffa.presentation.portlet.widgets.model.GridModelRow)103 UOW (org.jaffa.persistence.UOW)82 Criteria (org.jaffa.persistence.Criteria)66 DomainObjectNotFoundException (org.jaffa.exceptions.DomainObjectNotFoundException)59 MandatoryFieldException (org.jaffa.datatypes.exceptions.MandatoryFieldException)23 ValidationException (org.jaffa.datatypes.ValidationException)21 Iterator (java.util.Iterator)16 InvocationTargetException (java.lang.reflect.InvocationTargetException)15 Method (java.lang.reflect.Method)15 FormTemplate (org.jaffa.modules.printing.domain.FormTemplate)15 DuplicateKeyException (org.jaffa.exceptions.DuplicateKeyException)14 OutputCommand (org.jaffa.modules.printing.domain.OutputCommand)11 MalformedURLException (java.net.MalformedURLException)10 UserRequest (org.jaffa.applications.jaffa.modules.user.domain.UserRequest)10 PrinterDefinition (org.jaffa.modules.printing.domain.PrinterDefinition)10