com.ibm.cics.server

Class Application

    • Constructor Detail

      • Application

        public Application(java.lang.String operation,
                           java.lang.String application,
                           java.lang.String platform,
                           Version version,
                           Application.MatchStyle match)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        platform - The platform name for the context. Max 64 characters long.
        version - The Version of the application.
        match - The type of matching that will be done when invoking the application.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters, null fields or using MatchStyle.NONE and specifying a version.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • Application

        public Application(java.lang.String operation,
                           java.lang.String application,
                           Version version,
                           Application.MatchStyle match)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        version - The Version of the application.
        match - The type of matching that will be done when invoking the application.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters, null fields or using MatchStyle.NONE and specifying a version.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • Application

        public Application(java.lang.String operation,
                           java.lang.String application)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • Application

        public Application(java.lang.String operation,
                           java.lang.String application,
                           java.lang.String platform)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        platform - The platform name for the context. Max 64 characters long.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • Application

        public Application(java.lang.String operation,
                           java.lang.String application,
                           java.lang.String platform,
                           int majorVersion,
                           int minorVersion,
                           Application.MatchStyle match)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        platform - The platform name for the context. Max 64 characters long.
        majorVersion - The major version of the application.
        minorVersion - The minor version of the application.
        match - The type of matching that will be done when invoking the application.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters, null fields or using MatchStyle.NONE and specifying a version.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • Application

        public Application(java.lang.String operation,
                           java.lang.String application,
                           int majorVersion,
                           int minorVersion,
                           Application.MatchStyle match)
        Parameters:
        operation - The operation name for the context. Max 64 characters long.
        application - The application name for the context. Max 64 characters long.
        majorVersion - The major version of the application.
        minorVersion - The minor version of the application.
        match - The type of matching that will be done when invoking the application.
        Throws:
        java.lang.IllegalArgumentException - Caused by a string > 64 characters, null fields or using MatchStyle.NONE and specifying a version.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
    • Method Detail

      • getOperation

        public java.lang.String getOperation()
        Returns:
        Return the operation for this context.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • getApplication

        public java.lang.String getApplication()
        Returns:
        Return the application for this context.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • getPlatform

        public java.lang.String getPlatform()
        Returns:
        Return the platform for this context.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • getVersion

        public Version getVersion()
        Returns:
        Return the Version of the application.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • setVersion

        public void setVersion(Version version)
        Parameters:
        version - Set the Version of the application.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • getMatch

        public Application.MatchStyle getMatch()
        Returns:
        The MatchStyle of the application.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • setMatch

        public void setMatch(Application.MatchStyle match)
        Parameters:
        match - Set the MatchStyle of the application.
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • setOperation

        public void setOperation(java.lang.String operation)
        Parameters:
        operation - Set the operation name of the application
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • setApplication

        public void setApplication(java.lang.String application)
        Parameters:
        application - Set the application name of the application
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • setPlatform

        public void setPlatform(java.lang.String platform)
        Parameters:
        platform - Set the platform name of the application
        Since CICS TS version:
        5.2
        Since package version:
        1.500.0
      • equals

        public boolean equals(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
        See Also:
        Object.equals(java.lang.Object)