Package com.adito.install.forms

Examples of com.adito.install.forms.SelectUserDatabaseForm


    /* (non-Javadoc)
     * @see com.adito.wizard.actions.AbstractWizardAction#next(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     */
    public ActionForward next(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
        ActionForward fwd = super.next(mapping, form, request, response);
        SelectUserDatabaseForm udf = (SelectUserDatabaseForm)form;
        UserDatabaseDefinition def = UserDatabaseManager.getInstance().getUserDatabaseDefinition(udf.getUserDatabase());
        if(def.getInstallationCategory() > 0) {
            return mapping.findForward("configureUserDatabase");
        }
        return fwd;
    }
View Full Code Here

TOP

Related Classes of com.adito.install.forms.SelectUserDatabaseForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.