Uses of Class
org.rundeck.api.RundeckApiException.RundeckApiLoginException

Packages that use RundeckApiException.RundeckApiLoginException
org.rundeck.api Java client for the RunDeck API. 
 

Uses of RundeckApiException.RundeckApiLoginException in org.rundeck.api
 

Methods in org.rundeck.api that throw RundeckApiException.RundeckApiLoginException
 RundeckAbort RundeckClient.abortExecution(Long executionId)
          Abort an execution (identified by the given ID).
 String RundeckClient.deleteJob(String jobId)
          Delete a single job, identified by the given ID
 InputStream RundeckClient.exportJob(String jobId)
          Export the definition of a single job, identified by the given ID
 InputStream RundeckClient.exportJobs(String project)
          Export the definitions of all jobs that belongs to the given project
 InputStream RundeckClient.exportJobs(String project, String jobFilter, String groupPath, String... jobIds)
          Export the definitions of the jobs that belongs to the given project, and matches the given criteria (jobFilter, groupPath and jobIds)
 void RundeckClient.exportJobsToFile(String filename, String project)
          Export the definitions of all jobs that belongs to the given project, as an XML file
 void RundeckClient.exportJobsToFile(String filename, String project, String jobFilter, String groupPath, String... jobIds)
          Export the definitions of the jobs that belongs to the given project, and matches the given criteria (jobFilter, groupPath and jobIds), as an XML file
 void RundeckClient.exportJobToFile(String filename, String jobId)
          Export the definition of a single job (identified by the given ID), as an XML file
 RundeckJob RundeckClient.findJob(String project, String groupPath, String name)
          Find a job, identified by its project, group and name.
 RundeckExecution RundeckClient.getExecution(Long executionId)
          Get a single execution, identified by the given ID
 RundeckJob RundeckClient.getJob(String jobId)
          Get the definition of a single job, identified by the given ID
 List<RundeckExecution> RundeckClient.getJobExecutions(String jobId)
          Get the executions of the given job
 List<RundeckExecution> RundeckClient.getJobExecutions(String jobId, RundeckExecution.ExecutionStatus status)
          Get the executions of the given job
 List<RundeckExecution> RundeckClient.getJobExecutions(String jobId, RundeckExecution.ExecutionStatus status, Long max, Long offset)
          Get the executions of the given job
 List<RundeckJob> RundeckClient.getJobs()
          List all jobs (for all projects)
 List<RundeckJob> RundeckClient.getJobs(String project)
          List all jobs that belongs to the given project
 List<RundeckJob> RundeckClient.getJobs(String project, String jobFilter, String groupPath, String... jobIds)
          List the jobs that belongs to the given project, and matches the given criteria (jobFilter, groupPath and jobIds)
 RundeckNode RundeckClient.getNode(String name, String project)
          Get the definition of a single node
 List<RundeckNode> RundeckClient.getNodes()
          List all nodes (for all projects)
 List<RundeckNode> RundeckClient.getNodes(String project)
          List all nodes that belongs to the given project
 List<RundeckNode> RundeckClient.getNodes(String project, Properties nodeFilters)
          List nodes that belongs to the given project
 RundeckProject RundeckClient.getProject(String projectName)
          Get the definition of a single project, identified by the given name
 List<RundeckProject> RundeckClient.getProjects()
          List all projects
 List<RundeckExecution> RundeckClient.getRunningExecutions()
          Get all running executions (for all projects)
 List<RundeckExecution> RundeckClient.getRunningExecutions(String project)
          Get the running executions for the given project
 RundeckSystemInfo RundeckClient.getSystemInfo()
          Get system informations about the RunDeck server
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command, long poolingInterval, TimeUnit poolingUnit)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command, Properties nodeFilters)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command, Properties nodeFilters, Integer nodeThreadcount, Boolean nodeKeepgoing)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command, Properties nodeFilters, Integer nodeThreadcount, Boolean nodeKeepgoing, long poolingInterval, TimeUnit poolingUnit)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runAdhocCommand(String project, String command, Properties nodeFilters, long poolingInterval, TimeUnit poolingUnit)
          Run an ad-hoc command, and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runJob(String jobId)
          Run a RunDeck job (identified by the given ID), and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runJob(String jobId, Properties options)
          Run a RunDeck job (identified by the given ID), and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runJob(String jobId, Properties options, long poolingInterval, TimeUnit poolingUnit)
          Run a RunDeck job (identified by the given ID), and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runJob(String jobId, Properties options, Properties nodeFilters)
          Run a RunDeck job (identified by the given ID), and wait until its execution is finished (or aborted) to return.
 RundeckExecution RundeckClient.runJob(String jobId, Properties options, Properties nodeFilters, long poolingInterval, TimeUnit poolingUnit)
          Run a RunDeck job (identified by the given ID), and wait until its execution is finished (or aborted) to return.
 void RundeckClient.testCredentials()
          Test your credentials (login/password) on the RunDeck instance
 RundeckExecution RundeckClient.triggerAdhocCommand(String project, String command)
          Trigger the execution of an ad-hoc command, and return immediately (without waiting the end of the execution).
 RundeckExecution RundeckClient.triggerAdhocCommand(String project, String command, Properties nodeFilters)
          Trigger the execution of an ad-hoc command, and return immediately (without waiting the end of the execution).
 RundeckExecution RundeckClient.triggerAdhocCommand(String project, String command, Properties nodeFilters, Integer nodeThreadcount, Boolean nodeKeepgoing)
          Trigger the execution of an ad-hoc command, and return immediately (without waiting the end of the execution).
 RundeckExecution RundeckClient.triggerJob(String jobId)
          Trigger the execution of a RunDeck job (identified by the given ID), and return immediately (without waiting the end of the job execution)
 RundeckExecution RundeckClient.triggerJob(String jobId, Properties options)
          Trigger the execution of a RunDeck job (identified by the given ID), and return immediately (without waiting the end of the job execution)
 RundeckExecution RundeckClient.triggerJob(String jobId, Properties options, Properties nodeFilters)
          Trigger the execution of a RunDeck job (identified by the given ID), and return immediately (without waiting the end of the job execution)
 



Copyright © 2011. All Rights Reserved.