Interface IEnqueueOwner


  • public interface IEnqueueOwner
    Representation of a user/job that has an enqueue on a z/OS dataset.
    Since:
    1.0.0
    Version:
    2.0.0
    Restriction:
    This interface is not intended to be extended by clients.
    Restriction:
    This interface is not intended to be implemented by clients.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getJobName()
      Returns the name of the job that is holding an enqueue against the associated z/OS dataset.
      String getSystemID()
      Returns the ID of the system (host) on which the enqueue is held.
      String getUserID()
      Returns the ID of the user that is holding an enqueue against the associated z/OS dataset.
    • Method Detail

      • getUserID

        String getUserID()
        Returns the ID of the user that is holding an enqueue against the associated z/OS dataset.

        Note: null will be returned if the enqueue is not related to a user or if the enqueue is associated with a user on a z/OS host other than the z/OS host that the enqueued dataset was retrieved from.

        Returns:
        the ID of the user, or null
        Since:
        1.0.0
      • getJobName

        String getJobName()
        Returns the name of the job that is holding an enqueue against the associated z/OS dataset.

        Note: The name of the job may be the name of an internal Compuware job if the enqueue originated on a z/OS host other than the z/OS host that the enqueued dataset was retrieved from.

        Returns:
        the name of the job
        Since:
        1.0.0
      • getSystemID

        String getSystemID()
        Returns the ID of the system (host) on which the enqueue is held.
        Returns:
        the ID of the system
        Since:
        1.0.0