• Packages that use IExecute 
    Package Description
    com.ibm.dbb.build  
    • Uses of IExecute in com.ibm.dbb.build

      Subinterfaces of IExecute in com.ibm.dbb.build 
      Modifier and Type Interface and Description
      interface  IExecute2 
      Classes in com.ibm.dbb.build that implement IExecute 
      Modifier and Type Class and Description
      class  AbstractCommandExec
      Performs non-MVS commands, for example: TSO or ISPF commands.
      class  AbstractExec
      Abstract class that implements IExec to execute a command on system z.
      class  CopyToHFS
      This command can be used to copy a partitioned dataset (PDS) member to an HFS file.
      class  CopyToPDS
      This command is used to copy HFS files to partitioned datasets (PDS).
      class  CreatePDS
      This command is used to create partitioned datasets (PDS).
      class  ISPFExec
      Execute an ISPF command Example of usage:
      class  JCLExec
      Deprecated. 
      As of release 2.0.1, replaced by JobExec.

      Submit a JCL in a member of a data set, or a file on HFS, or an internal memory. Example of usage:

       JCLExec exec = new JCLExec()
       exec.confDir('/var/dbb_1.0.1/conf')
       def rc = exec.dataset('USER.JCL').member('SAMPLE').execute()
       println "Job '${exec.getSubmittedJobId()}' was submitted successfully with maxRC = ${exec.maxRC}"
       exec.getAllDDNames().each({ ddName -> println "DD Name: $ddName"
           def file = new File("/u/user/sample/${ddName}.output")
           exec.saveOutput(ddName, file, null)    
       })
       
      class  JobExec
      Submit a JCL job from a member of a data set, a file on HFS, or a String.
      class  MVSExec
      The MVSExec command is used to execute a program on System z.
      class  TSOExec
      Execute a TSO command Example of usage:
      Methods in com.ibm.dbb.build that return types with arguments of type IExecute 
      Modifier and Type Method and Description
      java.util.List<IExecute> MVSJob.getExecutables()
      Return a list of commands to be executed
      Methods in com.ibm.dbb.build with parameters of type IExecute 
      Modifier and Type Method and Description
      void MVSJob.addExecutable(IExecute executable)
      Adds an executable (IExecutable) to the list of executables to run.
      MVSJob MVSJob.executable(IExecute executable)
      Execute a command
      Method parameters in com.ibm.dbb.build with type arguments of type IExecute 
      Modifier and Type Method and Description
      void MVSJob.setExecutables(java.util.List<IExecute> executables)
      Sets the list of executables to run

<IBM Copyright © 2018 IBM Corp. All Rights Reserved.