Examples of ThesisSearchBean


Examples of org.fenixedu.academic.dto.thesis.ThesisSearchBean

public class SearchThesesDA extends ThesisLibraryDA {

    @EntryPoint
    public ActionForward prepare(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        ThesisSearchBean search = new ThesisSearchBean();
        performSearch(request, search);
        return mapping.findForward("search");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.thesis.ThesisSearchBean

    public ActionForward update(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        String text = request.getParameter("text");
        String state = request.getParameter("state");
        String year = request.getParameter("year");
        ThesisSearchBean search = new ThesisSearchBean(text, state, year);
        performSearch(request, search);
        return mapping.findForward("search");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.thesis.ThesisSearchBean

        return mapping.findForward("search");
    }

    public ActionForward search(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        final ThesisSearchBean search = getRenderedObject("search");
        performSearch(request, search);
        return mapping.findForward("search");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.thesis.ThesisSearchBean

            state = request.getParameter("state");
        }
        if (request.getParameter("year") != null) {
            year = request.getParameter("year");
        }
        request.setAttribute("searchArgs", buildSearchArgs(new ThesisSearchBean(text, state, year)));
        request.setAttribute("thesis", getThesis(request));
        return super.execute(mapping, actionForm, request, response);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.