@Controller @RequestMapping(value="/grades") public class GradesController extends Object
Constructor and Description |
---|
GradesController() |
Modifier and Type | Method and Description |
---|---|
String |
index(org.springframework.ui.Model uiModel,
javax.servlet.http.HttpServletRequest request)
Default controller for the Grades tool
|
void |
setService(GradesService service)
Sets the reference to the grades service
|
String |
viewExams(org.springframework.ui.Model uiModel,
String userAgent,
String startDateString,
String endDateString,
javax.servlet.http.HttpServletRequest request)
Controller for when the user is requesting the results
|
public GradesController()
@RequestMapping(method=GET) public String index(org.springframework.ui.Model uiModel, javax.servlet.http.HttpServletRequest request)
@RequestMapping(value="viewResults", method=POST) public String viewExams(org.springframework.ui.Model uiModel, @RequestHeader(required=false,value="User-Agent",defaultValue="unknown") String userAgent, @RequestParam(value="startDate") String startDateString, @RequestParam(value="endDate") String endDateString, javax.servlet.http.HttpServletRequest request) throws ParseException
ParseException
public void setService(GradesService service)
service
- Copyright © 2011-2013 The Kuali Foundation. All Rights Reserved.