com.ibm.cics.server

Class Message

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


  • public class Message
    extends java.lang.Object

    Utility class for issuing CICS messages

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

      Fields 
      Modifier and Type Field and Description
      static int MSG0001
      Constant for message number 1
    • Constructor Summary

      Constructors 
      Constructor and Description
      Message() 
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method and Description
      static void write(int msgno, int seqno, java.lang.String ins1, java.lang.String ins2, java.lang.String ins3, java.lang.String ins4, java.lang.String ins5)
      Write a message using message facilities of the underlying CICS platform.
      • Methods inherited from class java.lang.Object

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

      • MSG0001

        public static final int MSG0001
        Constant for message number 1
        See Also:
        Constant Field Values
        Since CICS TS version:
        1.3
        Since package version:
        1.0
    • Constructor Detail

      • Message

        public Message()
    • Method Detail

      • write

        public static void write(int msgno,
                                 int seqno,
                                 java.lang.String ins1,
                                 java.lang.String ins2,
                                 java.lang.String ins3,
                                 java.lang.String ins4,
                                 java.lang.String ins5)
        Write a message using message facilities of the underlying CICS platform. This class is intended for CICS system use. It is defined as public to allow usage from CICS supplied java code in other packages.
        Parameters:
        msgno - JCICS message number
        seqno - unused by CICS/ESA
        ins1 - message insert (null if not used)
        ins2 - message insert (null if not used)
        ins3 - message insert (null if not used)
        ins4 - message insert (null if not used)
        ins5 - message insert (null if not used)
        Since CICS TS version:
        1.3
        Since package version:
        1.0