Interface ICaptureSpecificationData
-
- All Superinterfaces:
ICICSObject
,ICICSResource
,com.ibm.cics.model.meta.ITypedObject
public interface ICaptureSpecificationData extends ICICSResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ICaptureSpecificationData.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 CAPTURESPECICaptureSpecificationDataReference
getCICSObjectReference()
java.lang.String
getContainer()
Getter for field CONTAINERjava.lang.String
getEventbinding()
Getter for field EVENTBINDINGjava.lang.Long
getFieldlength()
Getter for field FIELDLENGTHjava.lang.Long
getFieldoffset()
Getter for field FIELDOFFSETjava.lang.String
getFilename()
Getter for field FILENAMEjava.lang.String
getFiltervalue()
Getter for field FILTERVALUEjava.lang.String
getLocation()
Getter for field LOCATIONICICSType<ICaptureSpecificationData>
getObjectType()
ICaptureSpecificationData.OperatorValue
getOperator()
Getter for field OPERATORjava.lang.Long
getSeqnumber()
Getter for field SEQNUMBERjava.lang.String
getStructname()
Getter for field STRUCTNAMEjava.lang.String
getVariablename()
Getter for field VARIABLENAME-
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<ICaptureSpecificationData> 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 the associated event binding. The name can be up to 32 characters in length.
-
getContainer
java.lang.String getContainer()
Getter for field CONTAINERContainer name
Specifies a data area to receive the name of the container which contains the data if the LOCATION equals CHANNEL or FROMCHANNEL.
-
getFieldlength
java.lang.Long getFieldlength()
Getter for field FIELDLENGTHField length
Specifies the length of data to be tested for this predicate.
-
getFieldoffset
java.lang.Long getFieldoffset()
Getter for field FIELDOFFSETThe data offset within the data source
Specifies the data offset within the data source this predicate is found at.
-
getFilename
java.lang.String getFilename()
Getter for field FILENAMELanguage structure file name
Specifies a data area to receive the first 32 characters of the name of the file which contains the imported language structure used to define this predicate.
-
getLocation
java.lang.String getLocation()
Getter for field LOCATIONLocation of the data
Specifies a data area to receive the location of data to be tested.
-
getStructname
java.lang.String getStructname()
Getter for field STRUCTNAMELanguage structure name
Specifies a data area to receive the first 32 characters of the name of the imported language structure used to define this predicate.
-
getVariablename
java.lang.String getVariablename()
Getter for field VARIABLENAMELanguage structure variable name
Specifies a data area to receive the first 32 characters of the name of the variable in the imported language structure.
-
getOperator
ICaptureSpecificationData.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
- This predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH does not equal FILTERVALUE.
- DOESNOTEXIST
- This data predicate evaluates true if the data source identified by LOCATION does not exist.
- DOESNOTSTART
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH does not start with FILTERVALUE.
- EQUALS
- The predicate evaluates true f the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH equals FILTERVALUE.
- EXISTS
- This data predicate evaluates true if the data source identified by LOCATION exists.
- GREATERTHAN
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH is greater than FILTERVALUE.
- ISNOTGREATER
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH is equal to or less than FILTERVALUE.
- ISNOTLESS
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH is equal to or greater than FILTERVALUE.
- LESSTHAN
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH is less than FILTERVALUE.
- STARTSWITH
- The predicate evaluates true if the value of the data item defined by LOCATION, FIELDOFFSET and FIELDLENGTH 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 FILTERVALUEApplication data predicate value
Specifies a 255-character data area to receive the value of the Application Data predicate. Non-character predicates are converted to their character representation.
-
getCICSObjectReference
ICaptureSpecificationDataReference getCICSObjectReference()
- Specified by:
getCICSObjectReference
in interfaceICICSObject
- Specified by:
getCICSObjectReference
in interfaceICICSResource
-
-