@Controller
public class StepExecutionController
extends java.lang.Object
| Constructor and Description |
|---|
StepExecutionController(JobService jobService) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
detail(org.springframework.ui.Model model,
java.lang.Long jobExecutionId,
java.lang.Long stepExecutionId,
java.util.Date date,
org.springframework.validation.Errors errors) |
java.lang.String |
getStepExecutionContext(org.springframework.ui.Model model,
java.lang.Long jobExecutionId,
java.lang.Long stepExecutionId,
java.util.Date date,
org.springframework.validation.Errors errors) |
java.lang.String |
history(org.springframework.ui.Model model,
java.lang.Long jobExecutionId,
java.lang.Long stepExecutionId,
java.util.Date date,
org.springframework.validation.Errors errors) |
java.lang.String |
list(org.springframework.ui.Model model,
java.lang.Long jobExecutionId,
java.util.Date date,
org.springframework.validation.Errors errors) |
void |
setObjectMapper(org.codehaus.jackson.map.ObjectMapper objectMapper) |
void |
setTimeZone(java.util.TimeZone timeZone) |
@Autowired public StepExecutionController(JobService jobService)
@Autowired(required=false) @Qualifier(value="userTimeZone") public void setTimeZone(java.util.TimeZone timeZone)
timeZone - the timeZone to set@Autowired public void setObjectMapper(org.codehaus.jackson.map.ObjectMapper objectMapper)
@RequestMapping(value="/jobs/executions/{jobExecutionId}/steps",
method=GET)
public java.lang.String list(org.springframework.ui.Model model,
@PathVariable
java.lang.Long jobExecutionId,
@ModelAttribute(value="date")
java.util.Date date,
org.springframework.validation.Errors errors)
@RequestMapping(value="/jobs/executions/{jobExecutionId}/steps/{stepExecutionId}",
method=GET)
public java.lang.String detail(org.springframework.ui.Model model,
@PathVariable
java.lang.Long jobExecutionId,
@PathVariable
java.lang.Long stepExecutionId,
@ModelAttribute(value="date")
java.util.Date date,
org.springframework.validation.Errors errors)
@RequestMapping(value="/jobs/executions/{jobExecutionId}/steps/{stepExecutionId}/progress",
method=GET)
public java.lang.String history(org.springframework.ui.Model model,
@PathVariable
java.lang.Long jobExecutionId,
@PathVariable
java.lang.Long stepExecutionId,
@ModelAttribute(value="date")
java.util.Date date,
org.springframework.validation.Errors errors)
@RequestMapping(value="/jobs/executions/{jobExecutionId}/steps/{stepExecutionId}/execution-context",
method=GET)
public java.lang.String getStepExecutionContext(org.springframework.ui.Model model,
@PathVariable
java.lang.Long jobExecutionId,
@PathVariable
java.lang.Long stepExecutionId,
@ModelAttribute(value="date")
java.util.Date date,
org.springframework.validation.Errors errors)
Copyright © 2015. All Rights Reserved.