com.ibm.cics.server

Class RetrievedData

  • java.lang.Object
    • com.ibm.cics.server.RetrievedData


  • public class RetrievedData
    extends java.lang.Object

    This class holds the data retrieved for a task that has been STARTed.

    Since CICS TS version:
    1.3
    Since package version:
    1.0
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      byte[] data
      Deprecated. 
      - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
      byte[] queue
      Deprecated. 
      - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
      java.lang.String termId
      Deprecated. 
      - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
      java.lang.String transId
      Deprecated. 
      - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      byte[] getData()
      Retrieve the data value.
      byte[] getQueue()
      Retrieve the Queue value.
      java.lang.String getStringData()
      Retrieve the data value as text.
      java.lang.String getStringQueue()
      Retrieve the Queue value as text.
      java.lang.String getTermId()
      Retrieve the terminal id value.
      java.lang.String getTransId()
      Retrieve the transaction id value.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • data

        @Deprecated
        public byte[] data
        Deprecated. - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
        the data
        Since CICS TS version:
        1.3
        Since package version:
        1.0
      • transId

        @Deprecated
        public java.lang.String transId
        Deprecated. - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
        the transaction id
        Since CICS TS version:
        1.3
        Since package version:
        1.0
      • termId

        @Deprecated
        public java.lang.String termId
        Deprecated. - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
        the terminal id
        Since CICS TS version:
        1.3
        Since package version:
        1.0
      • queue

        @Deprecated
        public byte[] queue
        Deprecated. - Direct access to this field will not be allowed in a future release This will be made private, use the getter methods instead.
        the queue name
        Since CICS TS version:
        1.3
        Since package version:
        1.0
    • Method Detail

      • getData

        public byte[] getData()
        Retrieve the data value.
        Returns:
        the data in bytes
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0
      • getStringData

        public java.lang.String getStringData()
        Retrieve the data value as text. The data is assumed to be encoded in the LOCALCCSID. The behavior of this method when the bytes are not valid in the LOCALCCSID encoding is unspecified.
        Returns:
        the data value as a String
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0
      • getTransId

        public java.lang.String getTransId()
        Retrieve the transaction id value.
        Returns:
        the trabsaction id name
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0
      • getTermId

        public java.lang.String getTermId()
        Retrieve the terminal id value.
        Returns:
        the terminal name
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0
      • getQueue

        public byte[] getQueue()
        Retrieve the Queue value.
        Returns:
        the queue name in bytes
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0
      • getStringQueue

        public java.lang.String getStringQueue()
        Retrieve the Queue value as text. The Queue name is assumed to be encoded in the LOCALCCSID. The behavior of this method when the bytes are not valid in the LOCALCCSID encoding is unspecified.
        Returns:
        the Queue name value as a String
        Since CICS TS version:
        5.1
        Since package version:
        1.401.0