return new ForwardResolution("/WEB-INF/pages/subjectSearch.jsp");
}
@HandlesEvent("searchByStd")
public Resolution searchByStd() {
Standard standard = this.standardService.getById(this.standardId);
List<Subject> subjects = this.subjectService
.getSubjectsTaughtInStd(standard);
this.getContext().setAttributeToRequest("listOfSubjects", subjects);
this.getContext().setAttributeToSession("searchCriteria", "standardId");
this.getContext().setAttributeToSession("_sess_search_param",
this.standardId);
this.getContext().setAttributeToRequest("standardName",
standard.getName());
return new ForwardResolution("/WEB-INF/pages/subjectList.jsp");
}