mirror of
https://github.com/Fishwaldo/rundeck-api-java-client.git
synced 2025-07-12 16:09:05 +00:00
fix javadoc (tag @see)
This commit is contained in:
parent
266679acb5
commit
3b6892e3b7
1 changed files with 5 additions and 5 deletions
|
@ -679,7 +679,7 @@ public class RundeckClient implements Serializable {
|
|||
* @throws RundeckApiLoginException if the login failed
|
||||
* @throws IllegalArgumentException if the jobId is blank (null, empty or whitespace)
|
||||
* @see #findJob(String, String, String)
|
||||
* @see #exportJob(String)
|
||||
* @see #exportJob(String, String)
|
||||
*/
|
||||
public RundeckJob getJob(String jobId) throws RundeckApiException, RundeckApiLoginException,
|
||||
IllegalArgumentException {
|
||||
|
@ -1781,7 +1781,7 @@ public class RundeckClient implements Serializable {
|
|||
* @throws RundeckApiException in case of error when calling the API (non-existent job with this ID)
|
||||
* @throws RundeckApiLoginException if the login failed
|
||||
* @throws IllegalArgumentException if the jobId is blank (null, empty or whitespace)
|
||||
* @see #getJobExecutions(String, ExecutionStatus, Long, Long)
|
||||
* @see #getJobExecutions(String, RundeckExecution.ExecutionStatus, Long, Long)
|
||||
*/
|
||||
public List<RundeckExecution> getJobExecutions(String jobId) throws RundeckApiException, RundeckApiLoginException,
|
||||
IllegalArgumentException {
|
||||
|
@ -1798,7 +1798,7 @@ public class RundeckClient implements Serializable {
|
|||
* @throws RundeckApiLoginException if the login failed
|
||||
* @throws IllegalArgumentException if the jobId is blank (null, empty or whitespace), or the executionStatus is
|
||||
* invalid
|
||||
* @see #getJobExecutions(String, ExecutionStatus, Long, Long)
|
||||
* @see #getJobExecutions(String, String, Long, Long)
|
||||
*/
|
||||
public List<RundeckExecution> getJobExecutions(String jobId, String status) throws RundeckApiException,
|
||||
RundeckApiLoginException, IllegalArgumentException {
|
||||
|
@ -1815,7 +1815,7 @@ public class RundeckClient implements Serializable {
|
|||
* @throws RundeckApiException in case of error when calling the API (non-existent job with this ID)
|
||||
* @throws RundeckApiLoginException if the login failed
|
||||
* @throws IllegalArgumentException if the jobId is blank (null, empty or whitespace)
|
||||
* @see #getJobExecutions(String, ExecutionStatus, Long, Long)
|
||||
* @see #getJobExecutions(String, RundeckExecution.ExecutionStatus, Long, Long)
|
||||
*/
|
||||
public List<RundeckExecution> getJobExecutions(String jobId, ExecutionStatus status) throws RundeckApiException,
|
||||
RundeckApiLoginException, IllegalArgumentException {
|
||||
|
@ -1834,7 +1834,7 @@ public class RundeckClient implements Serializable {
|
|||
* @throws RundeckApiLoginException if the login failed
|
||||
* @throws IllegalArgumentException if the jobId is blank (null, empty or whitespace), or the executionStatus is
|
||||
* invalid
|
||||
* @see #getJobExecutions(String, ExecutionStatus, Long, Long)
|
||||
* @see #getJobExecutions(String, RundeckExecution.ExecutionStatus, Long, Long)
|
||||
*/
|
||||
public List<RundeckExecution> getJobExecutions(String jobId, String status, Long max, Long offset)
|
||||
throws RundeckApiException, RundeckApiLoginException, IllegalArgumentException {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue