@@ -232,8 +232,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
232232 * @return the job parameters that were used to launch the associated instance
233233 * @throws NoSuchJobExecutionException if the id was not associated with any
234234 * {@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)}.
237237 * Scheduled for removal in 6.2 or later.
238238 */
239239 @ Deprecated (since = "6.0" , forRemoval = true )
@@ -246,8 +246,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
246246 * @return a String summarising the state of the job execution
247247 * @throws NoSuchJobExecutionException if there is no {@link JobExecution} with the
248248 * 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)}.
251251 * Scheduled for removal in 6.2 or later.
252252 */
253253 @ Deprecated (since = "6.0" , forRemoval = true )
@@ -260,8 +260,8 @@ default JobInstance getJobInstance(String jobName, JobParameters jobParameters)
260260 * @return a map of step execution id to String summarising the state of the execution
261261 * @throws NoSuchJobExecutionException if there is no {@link JobExecution} with the
262262 * 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)}.
265265 * Scheduled for removal in 6.2 or later.
266266 */
267267 @ Deprecated (since = "6.0" , forRemoval = true )
0 commit comments