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