Uses of Class
zowe.client.sdk.zosjobs.response.Job
-
Packages that use Job Package Description zowe.client.sdk.zosjobs.methods z/OS jobs functionality provided by the SDKzowe.client.sdk.zosjobs.response Request responses objects for z/OS jobs processing -
-
Uses of Job in zowe.client.sdk.zosjobs.methods
Methods in zowe.client.sdk.zosjobs.methods that return Job Modifier and Type Method Description JobJobGet. getById(String jobId)Get a job by job id.JobJobGet. getStatus(String jobName, String jobId)Get the status and other details (e.g., owner, return code) for a job, including step-data.JobJobGet. getStatusByJob(Job job)Get the status and other details (e.g., owner, return code) for a job, including step-data.JobJobGet. getStatusCommon(CommonJobParams params)Get the status and other details (e.g., owner, return code) for a job, including step-data.JobJobSubmit. submit(String jobDataSet)Submit a job on z/OS.JobJobSubmit. submitByJcl(String jcl, String internalReaderRecfm, String internalReaderLrecl)Submit a string of JCL to runJobJobSubmit. submitCommon(SubmitJobParams params)Submit a job on z/OS.JobJobSubmit. submitJclCommon(SubmitJclParams params)Submit a JCL string to run which can contain JCL symbolic substitutionsJobJobMonitor. waitByOutputStatus(String jobName, String jobId)Given the jobname/jobid, wait for the status of the job to be "OUTPUT".JobJobMonitor. waitByOutputStatus(Job job)Given a Job document (has jobname/jobid), wait for the status of the job to be "OUTPUT".JobJobMonitor. waitByStatus(String jobName, String jobId, JobStatus.Type statusType)Given the jobname/jobid, wait for the given status of the job.JobJobMonitor. waitByStatus(Job job, JobStatus.Type statusType)Given a Job document (has jobname/jobid), wait for the given status of the job.JobJobMonitor. waitStatusCommon(MonitorJobWaitForParams params)Given jobname/jobid, check for the desired "status" (default is "OUTPUT") continuously (based on the interval and attempts specified).Methods in zowe.client.sdk.zosjobs.methods that return types with arguments of type Job Modifier and Type Method Description List<Job>JobGet. getAll()Get jobs (defaults to the user ID of the session as an owner).List<Job>JobGet. getByOwner(String owner)Get jobs that are owned by a certain user or pattern of users.List<Job>JobGet. getByOwnerAndPrefix(String owner, String prefix)Get a list of jobs that match an owner and prefix.List<Job>JobGet. getByPrefix(String prefix)Get jobs that match a job name by prefix.List<Job>JobGet. getCommon(GetJobParams params)Get jobs filtered by owner and prefix.Methods in zowe.client.sdk.zosjobs.methods with parameters of type Job Modifier and Type Method Description ResponseJobCancel. cancelByJob(Job job, String version)Cancel a job on z/OS by job object.ResponseJobCancel. cancelPurgeByJob(Job job, String version)Cancel a job on z/OS by job object and purge the job output.ResponseJobDelete. deleteByJob(Job job, String version)Cancel and purge a job from spool.StringJobGet. getJclByJob(Job job)Get JCL from a job.List<JobFile>JobGet. getSpoolFilesByJob(Job job)Get a list of all job spool files for a job.JobJobGet. getStatusByJob(Job job)Get the status and other details (e.g., owner, return code) for a job, including step-data.StringJobGet. getStatusValueByJob(Job job)Get the status value for a given job object.booleanJobMonitor. waitByMessage(Job job, String message)Given a Job document (has jobname/jobid), wait for the given message from the job.JobJobMonitor. waitByOutputStatus(Job job)Given a Job document (has jobname/jobid), wait for the status of the job to be "OUTPUT".JobJobMonitor. waitByStatus(Job job, JobStatus.Type statusType)Given a Job document (has jobname/jobid), wait for the given status of the job. -
Uses of Job in zowe.client.sdk.zosjobs.response
Methods in zowe.client.sdk.zosjobs.response that return Job Modifier and Type Method Description JobJob.Builder. build()Return a Job object based on Builder this objectJobCheckJobStatus. getJob()Retrieve job specifiedConstructors in zowe.client.sdk.zosjobs.response with parameters of type Job Constructor Description CheckJobStatus(boolean statusFound, Job job)CheckJobStatus constructor
-