com.ibm.cics.server

Class SynchronizationResource

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    AddressResource, NameResource


    public abstract class SynchronizationResource
    extends API
    implements java.io.Serializable

    This abstract class provides the common implementation for synchronized resources.

    It provides the implementations of the enqueue() and dequeue() methods that can cater for either style (name or address) of synchronization. The classes that extend this class, NameResource and AddressResource are specialized for each style of synchronization.

    See Also:
    com.ibm.cics.server.API for general restrictions on using the JCICS API., Serialized Form
    Since CICS TS version:
    1.3
    Since package version:
    1.0.0
    • Constructor Summary

      Constructors 
      Constructor and Description
      SynchronizationResource()
      Construct a default SynchronizationResource.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getDescription()
      Return the description of the synchronization resource.
      void setDescription(java.lang.String description)
      Sets the description of the synchronization resource.
      • Methods inherited from class java.lang.Object

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

      • SynchronizationResource

        public SynchronizationResource()
        Construct a default SynchronizationResource.
        Since CICS TS version:
        1.3
        Since package version:
        1.0.0
    • Method Detail

      • getDescription

        public java.lang.String getDescription()
        Return the description of the synchronization resource.
        Returns:
        the synchronization resource description
        Since CICS TS version:
        1.3
        Since package version:
        1.0.0
      • setDescription

        public void setDescription(java.lang.String description)
        Sets the description of the synchronization resource.
        Parameters:
        description - the description of the CICS synchronization resource
        Since CICS TS version:
        1.3
        Since package version:
        1.0.0