diff --git a/spring-cloud-dataflow-docs/src/main/asciidoc/api-guide.adoc b/spring-cloud-dataflow-docs/src/main/asciidoc/api-guide.adoc index 758887959a..71a4868e2d 100644 --- a/spring-cloud-dataflow-docs/src/main/asciidoc/api-guide.adoc +++ b/spring-cloud-dataflow-docs/src/main/asciidoc/api-guide.adoc @@ -3072,9 +3072,6 @@ include::{snippets}/job-step-executions-documentation/step-progress/curl-request include::{snippets}/job-step-executions-documentation/step-progress/http-response.adoc[] -NOTE: The following fields in the stepExecutionHistory are deprecated and will be removed in a future release: rollbackCount, readCount, writeCount, filterCount, readSkipCount, writeSkipCount, processSkipCount, durationPerRead. - - [[api-guide-resources-runtime-information-applications]] === Runtime Information about Applications diff --git a/spring-cloud-dataflow-rest-resource/src/main/java/org/springframework/cloud/dataflow/rest/job/StepExecutionHistory.java b/spring-cloud-dataflow-rest-resource/src/main/java/org/springframework/cloud/dataflow/rest/job/StepExecutionHistory.java index 2d4502838c..e29b180985 100644 --- a/spring-cloud-dataflow-rest-resource/src/main/java/org/springframework/cloud/dataflow/rest/job/StepExecutionHistory.java +++ b/spring-cloud-dataflow-rest-resource/src/main/java/org/springframework/cloud/dataflow/rest/job/StepExecutionHistory.java @@ -23,7 +23,7 @@ /** * Stores the cumulative information for a specific {@link StepExecution}'s history. - * } + * * @author Glenn Renfro */ public class StepExecutionHistory { @@ -84,7 +84,6 @@ public String getStepName() { /** * Returns the number of {@link StepExecution}s are being used for history calculations. - * * The id of an existing step execution for a specific job execution (required) * @return the number of {@link StepExecution}s. */ @@ -92,12 +91,10 @@ public int getCount() { return count; } - @Deprecated public CumulativeHistory getCommitCount() { return commitCount; } - @Deprecated public CumulativeHistory getRollbackCount() { return rollbackCount; } @@ -106,27 +103,22 @@ public CumulativeHistory getReadCount() { return readCount; } - @Deprecated public CumulativeHistory getWriteCount() { return writeCount; } - @Deprecated public CumulativeHistory getFilterCount() { return filterCount; } - @Deprecated public CumulativeHistory getReadSkipCount() { return readSkipCount; } - @Deprecated public CumulativeHistory getWriteSkipCount() { return writeSkipCount; } - @Deprecated public CumulativeHistory getProcessSkipCount() { return processSkipCount; } @@ -139,7 +131,6 @@ public CumulativeHistory getDuration() { return duration; } - @Deprecated public CumulativeHistory getDurationPerRead() { return durationPerRead; }