Package com.adito.tunnels.forms

Examples of com.adito.tunnels.forms.TunnelsForm


     */
    public ActionForward unspecified(ActionMapping mapping, ActionForm form, HttpServletRequest request,
                    HttpServletResponse response) throws Exception {
        ActionForward fwd = super.unspecified(mapping, form, request, response);
        User user = LogonControllerFactory.getInstance().getUser(request);
        TunnelsForm tunnelsForm = (TunnelsForm) form;
        SessionInfo session = LogonControllerFactory.getInstance().getSessionInfo(request);
        tunnelsForm.initialise(session, user, ".name");
        tunnelsForm.checkSelectedView(request, response);
        Util.noCache(response);
        return fwd;
    }
View Full Code Here

TOP

Related Classes of com.adito.tunnels.forms.TunnelsForm

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.