@@ -232,8 +232,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
232
232
* @return the job parameters that were used to launch the associated instance
233
233
* @throws NoSuchJobExecutionException if the id was not associated with any
234
234
* {@link JobExecution}
235
- * @deprecated Since 6.0 in favor of
236
- * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long).getJobParameters() }.
235
+ * @deprecated Since 6.0 in favor of the <code>getJobParameters()</code> method of
236
+ * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long)}.
237
237
* Scheduled for removal in 6.2 or later.
238
238
*/
239
239
@ Deprecated (since = "6.0" , forRemoval = true )
@@ -246,8 +246,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
246
246
* @return a String summarising the state of the job execution
247
247
* @throws NoSuchJobExecutionException if there is no {@link JobExecution} with the
248
248
* supplied id
249
- * @deprecated Since 6.0 in favor of
250
- * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long).toString() }.
249
+ * @deprecated Since 6.0 in favor of the <code>toString()</code> method of
250
+ * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long)}.
251
251
* Scheduled for removal in 6.2 or later.
252
252
*/
253
253
@ Deprecated (since = "6.0" , forRemoval = true )
@@ -260,8 +260,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
260
260
* @return a map of step execution id to String summarising the state of the execution
261
261
* @throws NoSuchJobExecutionException if there is no {@link JobExecution} with the
262
262
* supplied id
263
- * @deprecated Since 6.0 in favor of
264
- * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long).getStepExecutions() }.
263
+ * @deprecated Since 6.0 in favor of the <code>getStepExecutions()</code> method of
264
+ * {@link org.springframework.batch.core.repository.JobRepository#getJobExecution(Long)}.
265
265
* Scheduled for removal in 6.2 or later.
266
266
*/
267
267
@ Deprecated (since = "6.0" , forRemoval = true )
0 commit comments