Class PlatformReturned


  • public class PlatformReturned
    extends java.lang.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 errno
      Instance variable to denote service C errno - first error field.
      int errno2
      Instance variable to denote service C errno2 - secondary error field.
      java.lang.String errnoMsg
      Instance variable to denote message string associated with errno.
      java.lang.Object objectRet
      Reference variable to an object returned by the Platform.
      int rc
      Instance variable to denote the return code
      java.lang.String stringRet
      Instance variable to denote an error message.
      boolean success
      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 Detail

      • 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 java.lang.String errnoMsg
        Instance variable to denote message string associated with errno.
      • stringRet

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

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