Interface ISystemParameter

    • Method Detail

      • getKeyword

        java.lang.String getKeyword()
        Getter for field KEYWORD

        Keyword name

        The 16 character keyword identifier of the system parameter.

      • getType

        ISystemParameter.TypeValue getType()
        Getter for field TYPE

        Type of system parameter

        Identifies the type of system parameter that has been extracted. The only value supported is:

        • SIT - The system initialization parameter can be extracted from any of the following locations:
          1. the DFHSITxx load module (TABLE)
          2. overrides specified on the PARM parameter of the EXEC PGM=DFHSIP statement (JCL)
          3. overrides specified in the SYSIN data set of the CICS startup job stream (SYSIN)
          4. overrides specified on the system console (CONSOLE)
      • getSource

        ISystemParameter.SourceValue getSource()
        Getter for field SOURCE

        Source of system parameter

        Identifies the source location of the system parameter that has been extracted. Values are:

        • TABLE - The parameter was extracted from the DFHSITxx load module.
        • CONSOLE - The parameter was extracted from an override provided through the system console.
        • SYSIN - The parameter was extracted from an override provided through a SYSIN data set.
        • JCL - The parameter was extracted from an override provided through a JCL EXEC statement parameter.
        Note: CONSOLE will not retrieve parameters that have been entered to correct any invalid values. You should correct these values at their source locations to enable CICS to start without operator intervention.
      • getValuelen

        java.lang.Long getValuelen()
        Getter for field VALUELEN

        Keyword value length

        The length of the current keyword value segment. If there is only one keyword value segment then this will be the same value as the total value length.

      • getSegnum

        java.lang.Long getSegnum()
        Getter for field SEGNUM

        Record segment number

        The segment number of returned value.

      • getSegtot

        java.lang.Long getSegtot()
        Getter for field SEGTOT

        Total segment number

        The total number of segments for value.

      • getTotallen

        java.lang.Long getTotallen()
        Getter for field TOTALLEN

        Total value length

        The combined length of all the current keyword value segments added together. If there is only one keyword value segment for the current keyword, then this will be the same value as the keyword value length.

      • getValue

        java.lang.String getValue()
        Getter for field VALUE

        Keyword value

        The value assigned to the associated keyword from the associated table type from the associated source location.