return collection;
}
public ActionForward showThesisDetails(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
HttpServletResponse response) throws Exception {
DomainObject thesis = getDomainObject(request, "thesisID");
if (thesis instanceof Thesis) {
request.setAttribute("thesis", thesis);
return mapping.findForward("showThesisDetails");
} else {
request.getRequestDispatcher("/notFound.jsp").forward(request, response);