Package com.apps.ubc.cc.model

Examples of com.apps.ubc.cc.model.SearchQueryModel


      dept = CourseSearchUtils.findDepartment(searchTerms);
      course = CourseSearchUtils.findCourse(searchTerms);
      section = CourseSearchUtils.findSection(searchTerms);
    }
    try {
      SearchQueryModel sqm = new SearchQueryModel(dept, course, section);
      HttpSession s = req.getSession();
      s.setAttribute("result", sqm);
      req.getRequestDispatcher("/searchresults.jsp").forward(req, resp);
    } catch (ServletException e) {
      e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.apps.ubc.cc.model.SearchQueryModel

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.