Package zowe.client.sdk.zosjobs.model
Class Job
- java.lang.Object
-
- zowe.client.sdk.zosjobs.model.Job
-
public class Job extends Object
Standard job response document that represents the attributes and status of a z/OS batch job- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJob.BuilderBuilder class for Job
-
Constructor Summary
Constructors Constructor Description Job(String jobId, String jobName, String subSystem, String owner, String status, String type, String classs, String retCode, JobStepData[] stepData, String url, String filesUrl, String jobCorrelator, Long phase, String phaseName)Job constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClasss()Retrieve classs specifiedStringgetFilesUrl()Retrieve filesUrl specifiedStringgetJobCorrelator()Retrieve jobCorrelator specifiedStringgetJobId()Retrieve jobId specifiedStringgetJobName()Retrieve jobName specifiedStringgetOwner()Retrieve an owner specifiedLonggetPhase()Retrieve phase specifiedStringgetPhaseName()Retrieve phaseName specifiedStringgetRetCode()Retrieve retCode specifiedStringgetStatus()Retrieve status specifiedJobStepData[]getStepData()Retrieve stepData specifiedStringgetSubSystem()Retrieve subSystem specifiedStringgetType()Retrieve type specifiedStringgetUrl()Retrieve url specifiedStringtoString()Return string value representing a Job object
-
-
-
Constructor Detail
-
Job
public Job(String jobId, String jobName, String subSystem, String owner, String status, String type, String classs, String retCode, JobStepData[] stepData, String url, String filesUrl, String jobCorrelator, Long phase, String phaseName)
Job constructor- Parameters:
jobId- job id valuejobName- job name valuesubSystem- JES subsystemowner- job ownerstatus- job statustype- job typeclasss- job classretCode- job return codestepData- array of step dataurl- job URLfilesUrl- job spool files URLjobCorrelator- job correlatorphase- job phasephaseName- job phase name
-
-
Method Detail
-
getClasss
public String getClasss()
Retrieve classs specified- Returns:
- classs value
-
getFilesUrl
public String getFilesUrl()
Retrieve filesUrl specified- Returns:
- filesUrl value
-
getJobCorrelator
public String getJobCorrelator()
Retrieve jobCorrelator specified- Returns:
- jobCorrelator value
-
getJobId
public String getJobId()
Retrieve jobId specified- Returns:
- jobId value
-
getJobName
public String getJobName()
Retrieve jobName specified- Returns:
- jobName value
-
getOwner
public String getOwner()
Retrieve an owner specified- Returns:
- owner value
-
getPhase
public Long getPhase()
Retrieve phase specified- Returns:
- phase value
-
getPhaseName
public String getPhaseName()
Retrieve phaseName specified- Returns:
- phaseName value
-
getRetCode
public String getRetCode()
Retrieve retCode specified- Returns:
- retCode value
-
getStatus
public String getStatus()
Retrieve status specified- Returns:
- status value
-
getStepData
public JobStepData[] getStepData()
Retrieve stepData specified- Returns:
- stepData value
-
getSubSystem
public String getSubSystem()
Retrieve subSystem specified- Returns:
- subSystem value
-
getType
public String getType()
Retrieve type specified- Returns:
- type value
-
getUrl
public String getUrl()
Retrieve url specified- Returns:
- url value
-
-