Interface ICaptureSpecificationOptions
-
- All Superinterfaces:
ICICSObject
,ICICSResource
,com.ibm.cics.model.meta.ITypedObject
public interface ICaptureSpecificationOptions extends ICICSResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ICaptureSpecificationOptions.OperatorValue
Enumeration type for field OPERATOR
-
Field Summary
-
Fields inherited from interface com.ibm.cics.model.ICICSResource
COPYRIGHT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCapturespec()
Getter for field CAPTURESPECICaptureSpecificationOptionsReference
getCICSObjectReference()
java.lang.String
getEventbinding()
Getter for field EVENTBINDINGjava.lang.String
getFiltervalue()
Getter for field FILTERVALUEICICSType<ICaptureSpecificationOptions>
getObjectType()
ICaptureSpecificationOptions.OperatorValue
getOperator()
Getter for field OPERATORjava.lang.String
getOptionname()
Getter for field OPTIONNAMEjava.lang.Long
getSeqnumber()
Getter for field SEQNUMBER-
Methods inherited from interface com.ibm.cics.model.ICICSObject
getCICSType, getName
-
Methods inherited from interface com.ibm.cics.model.ICICSResource
getCICSContainer, getCICSRelease, getRegionName
-
-
-
-
Method Detail
-
getObjectType
ICICSType<ICaptureSpecificationOptions> getObjectType()
- Specified by:
getObjectType
in interfaceICICSObject
- Specified by:
getObjectType
in interfacecom.ibm.cics.model.meta.ITypedObject
-
getCapturespec
java.lang.String getCapturespec()
Getter for field CAPTURESPECCapture specification name
Specifies the name of the associated capture specification. The name can be up to 32 characters in length.
-
getEventbinding
java.lang.String getEventbinding()
Getter for field EVENTBINDINGEvent binding name
Specifies the name of this event binding. The name can be up to 32 characters in length.
-
getOptionname
java.lang.String getOptionname()
Getter for field OPTIONNAMEOption name
Specifies a 32-character data area to receive the name of the application command option or system event option that is specified in the event specification. If using the CICS event binding editor, this value matches one of the application options for the capture point for an application event or one of the event options for the capture point for a system event.
-
getOperator
ICaptureSpecificationOptions.OperatorValue getOperator()
Getter for field OPERATORComparative operator for this predicate
Returns a CVDA that defines the operator that is used together with the value in the FILTERVALUE option when evaluating the predicate. The available CVDA values are as follows:
- DOESNOTEQUAL
- The predicate evaluates true if the value of the option OPTIONNAME does not equal FILTERVALUE.
- DOESNOTEXIST
- The predicate evaluates true if the option OPTIONNAME is not specified on the EXEC CICS command.
- DOESNOTSTART
- The predicate evaluates true if the value of the option OPTIONNAME does not start with FILTERVALUE.
- EQUALS
- The predicate evaluates true if the value of the option OPTIONNAME equals FILTERVALUE.
- EXISTS
- The predicate evaluates true if the option OPTIONNAME is specified on the EXEC CICS command.
- GOHIGHERTHAN
- The predicate evaluates true when the value of the threshold option crosses above the threshold percentage returned in FILTERVALUE.
- GOLOWERTHAN
- The predicate evaluates true when the value of the threshold option crosses below the threshold percentage returned in FILTERVALUE.
- GREATERTHAN
- The predicate evaluates true if the value of the option OPTIONNAME is greater than FILTERVALUE.
- ISNOTGREATER
- The predicate evaluates true if the value of the option OPTIONNAME is equal to or less than FILTERVALUE.
- ISNOTLESS
- The predicate evaluates true if the value of the option OPTIONNAME is equal to or greater than FILTERVALUE.
- LESSTHAN
- The predicate evaluates true if the value of the option OPTIONNAME is less than FILTERVALUE.
- STARTSWITH
- The predicate evaluates true if the value of the option OPTIONNAME starts with FILTERVALUE.
-
getSeqnumber
java.lang.Long getSeqnumber()
Getter for field SEQNUMBERBrowse sequence number
This number identifies the order in which the predicate resource was returned when using the EXEC CICS INQUIRE NEXT interface.
-
getFiltervalue
java.lang.String getFiltervalue()
Getter for field FILTERVALUEFilter value
Specifies a 255-character data area to receive the value of the application command option or system event option. Values shorter than 255 characters are padded with blanks.
-
getCICSObjectReference
ICaptureSpecificationOptionsReference getCICSObjectReference()
- Specified by:
getCICSObjectReference
in interfaceICICSObject
- Specified by:
getCICSObjectReference
in interfaceICICSResource
-
-