Package dev.galasa.zosconsole
Annotation Interface ZosConsole
z/OS Console
- See Also:
- Annotation:
- Description:
- The
@ZosConsole
annotation requests the z/OS Manager to provide a z/OS Console instance associated with a z/OS image. The test can request multiple z/OS Console instances, with the default being associated with the primary z/OS image. - Examples:
@ZosImage(imageTag="A")
public IZosImage zosImageA;
@ZosConsole(imageTag="A")
public IZosConsole zosConsoleA;
- Extra:
- The
IZosConsole
interface has two methods,IZosConsole.issueCommand(String)
andIZosConsole.issueCommand(String, String)
to issue a command to the z/OS console and returns aIZosConsoleCommand
instance.
-
Optional Element Summary
-
Element Details
-
imageTag
String imageTagThe tag of the zOS Image this variable is to be populated with- Default:
- "primary"
-