Package dev.galasa.zosbatch
Annotation Interface ZosBatch
z/OS Batch
- Annotation:
- Description:
- The
@ZosBatch
annotation requests the z/OS Manager to provide a z/OS Batch instance associated with a z/OS image. The test can request multiple z/OS Batch instances, with the default being associated with the primary zOS image.
At test end, the Manager stores the job output with the test results archive and removes jobs from the JES queue. - Examples:
- @ZosImage(imageTag="A")
public IZosImage zosImageA;
@ZosBatch(imageTag="A")
public IZosBatch zosBatchA; - Extra:
- The
IZosBatch
interface has a single method,IZosBatch.submitJob(String, IZosBatchJobname)
to submit a JCL as aString
and returns aIZosBatchJob
instance.
SeeZosBatch
,IZosBatch
andIZosBatchJob
to find out more.
-
Optional Element Summary
-
Element Details
-
imageTag
String imageTagTheimageTag
is used to identify the z/OS image.- Default:
- "primary"
-