Class PlatformReturned

java.lang.Object
com.ibm.os390.security.PlatformReturned

public class PlatformReturned extends Object
Class whose instance is returned by OS/390 wrapper classes. Its fields are set to various error codes and values returned by the OS/390 service called.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    Instance variable to denote service C errno - first error field.
    int
    Instance variable to denote service C errno2 - secondary error field.
    Instance variable to denote message string associated with errno.
    Reference variable to an object returned by the Platform.
    int
    Instance variable to denote the return code
    Instance variable to denote an error message.
    boolean
    Instance variable to denote service Success/Failure.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • success

      @Native public boolean success
      Instance variable to denote service Success/Failure.
    • rc

      public int rc
      Instance variable to denote the return code
    • errno

      public int errno
      Instance variable to denote service C errno - first error field.
    • errno2

      public int errno2
      Instance variable to denote service C errno2 - secondary error field.
    • errnoMsg

      public String errnoMsg
      Instance variable to denote message string associated with errno.
    • stringRet

      public String stringRet
      Instance variable to denote an error message.
    • objectRet

      public Object objectRet
      Reference variable to an object returned by the Platform.