Package | Description |
---|---|
org.springframework.cloud.dataflow.rest.job |
Defines the Batch Job specific REST domain classes.
|
org.springframework.cloud.dataflow.rest.resource |
Spring Cloud Data Flow REST HATEOAS Resource support.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
org.springframework.cloud.dataflow.server.service |
Contains various Services (Interfaces) that are part of the Dataflow Server.
|
org.springframework.cloud.dataflow.server.service.impl |
Contains Service implementations for the Dataflow Server.
|
Modifier and Type | Method and Description |
---|---|
List<TaskJobExecution> |
JobInstanceExecutions.getTaskJobExecutions() |
Constructor and Description |
---|
JobInstanceExecutions(org.springframework.batch.core.JobInstance jobInstance,
List<TaskJobExecution> taskJobExecutions) |
Constructor and Description |
---|
JobExecutionResource(TaskJobExecution taskJobExecution,
TimeZone timeZone) |
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedResources<JobExecutionResource> |
JobExecutionController.list(org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<TaskJobExecution> assembler)
Return a page-able list of
JobExecutionResource defined jobs. |
org.springframework.hateoas.PagedResources<JobExecutionResource> |
JobExecutionController.retrieveJobsByName(String jobName,
org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<TaskJobExecution> assembler)
Retrieve all task job executions with the task name specified
|
Modifier and Type | Method and Description |
---|---|
TaskJobExecution |
TaskJobService.getJobExecution(long id)
Retrieves a JobExecution from the JobRepository and matches it with a task id.
|
Modifier and Type | Method and Description |
---|---|
List<TaskJobExecution> |
TaskJobService.listJobExecutions(org.springframework.data.domain.Pageable pageable)
Retrieves Pageable list of
JobExecution s from the JobRepository and matches
the data with a task id. |
List<TaskJobExecution> |
TaskJobService.listJobExecutionsForJob(org.springframework.data.domain.Pageable pageable,
String jobName)
Retrieves Pageable list of
JobExecution from the JobRepository with a
specific jobName and matches the data with a task id. |
Modifier and Type | Method and Description |
---|---|
TaskJobExecution |
DefaultTaskJobService.getJobExecution(long id)
Retrieves a JobExecution from the JobRepository and matches it with a task id.
|
Modifier and Type | Method and Description |
---|---|
List<TaskJobExecution> |
DefaultTaskJobService.listJobExecutions(org.springframework.data.domain.Pageable pageable)
Retrieves Pageable list of
JobExecution s from the JobRepository and matches
the data with a task id. |
List<TaskJobExecution> |
DefaultTaskJobService.listJobExecutionsForJob(org.springframework.data.domain.Pageable pageable,
String jobName)
Retrieves Pageable list of
JobExecution from the JobRepository with a
specific jobName and matches the data with a task id. |
Copyright © 2016 Pivotal Software, Inc.. All rights reserved.