Interface IFEPIConnection
-
- All Superinterfaces:
ICICSObject,ICICSResource,com.ibm.cics.model.meta.ITypedObject
public interface IFEPIConnection extends ICICSResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIFEPIConnection.AcqstatusValueEnumeration type for field ACQSTATUSstatic classIFEPIConnection.InstlstatusValueEnumeration type for field INSTLSTATUSstatic classIFEPIConnection.ServstatusValueEnumeration type for field SERVSTATUSstatic classIFEPIConnection.StateValueEnumeration type for field STATE
-
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 IFEPIConnection.AcqstatusValuegetAcqstatus()Getter for field ACQSTATUSjava.lang.LonggetAcquires()Getter for field ACQUIRESjava.lang.LonggetCharsrecvd()Getter for field CHARSRECVDjava.lang.LonggetCharssent()Getter for field CHARSSENTIFEPIConnectionReferencegetCICSObjectReference()java.lang.LonggetConversatns()Getter for field CONVERSATNSjava.lang.LonggetErrors()Getter for field ERRORSIFEPIConnection.InstlstatusValuegetInstlstatus()Getter for field INSTLSTATUSjava.lang.LonggetLastacqcode()Getter for field LASTACQCODEjava.lang.StringgetNodename()Getter for field NODENAMEICICSType<IFEPIConnection>getObjectType()java.lang.StringgetPoolname()Getter for field POOLNAMEjava.lang.LonggetRecvtimeout()Getter for field RECVTIMEOUTIFEPIConnection.ServstatusValuegetServstatus()Getter for field SERVSTATUSIFEPIConnection.StateValuegetState()Getter for field STATEjava.lang.StringgetTargetname()Getter for field TARGETNAMEjava.lang.LonggetUnsolicinp()Getter for field UNSOLICINPjava.lang.StringgetUserdata()Getter for field USERDATAjava.lang.LonggetWaitconvnum()Getter for field WAITCONVNUM-
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<IFEPIConnection> getObjectType()
- Specified by:
getObjectTypein interfaceICICSObject- Specified by:
getObjectTypein interfacecom.ibm.cics.model.meta.ITypedObject
-
getTargetname
java.lang.String getTargetname()
Getter for field TARGETNAMETarget name
The target identifying the connection
-
getNodename
java.lang.String getNodename()
Getter for field NODENAMENode name
The name of the node identifying a connection
-
getPoolname
java.lang.String getPoolname()
Getter for field POOLNAMEPool name
The FEPI pool name
-
getAcquires
java.lang.Long getAcquires()
Getter for field ACQUIRESNumber of acquires
The total number of times the connection has been acquired
-
getConversatns
java.lang.Long getConversatns()
Getter for field CONVERSATNSNumber of conversations
The total number of conversations that have used this connection
-
getUnsolicinp
java.lang.Long getUnsolicinp()
Getter for field UNSOLICINPNumber of unsolicited inputs
The total number of times unsolicited input was received on this connection
-
getCharssent
java.lang.Long getCharssent()
Getter for field CHARSSENTNumber of characters sent
The total number of characters of data sent on this connection
-
getCharsrecvd
java.lang.Long getCharsrecvd()
Getter for field CHARSRECVDNumber of characters received
The total number of characters of data received on this connection
-
getRecvtimeout
java.lang.Long getRecvtimeout()
Getter for field RECVTIMEOUTNumber of receive timeouts
The total number of times a FEPI RECEIVE timed-out on this connection
-
getErrors
java.lang.Long getErrors()
Getter for field ERRORSNumber of error conditions
The total number of VTAMB. error conditions raised for this connection
-
getAcqstatus
IFEPIConnection.AcqstatusValue getAcqstatus()
Getter for field ACQSTATUSAcquired status
The acquire state; that is , whether a session on the connection is bound or not. Values are : ACQUIRED, ACQUIRING, RELEASED or RELEASING
-
getInstlstatus
IFEPIConnection.InstlstatusValue getInstlstatus()
Getter for field INSTLSTATUSConnections install status
Specifies whether the resource is installed, or is in the process of being discarded, waiting for the conversations that are using it to end. Input values: INSTALLED, NOTINSTALLED
-
getLastacqcode
java.lang.Long getLastacqcode()
Getter for field LASTACQCODESense code from last REQSESS request
The result of the last acquire request for the connection; that is, the sense code from the last VTAM REQSESS, zero indicating success
-
getServstatus
IFEPIConnection.ServstatusValue getServstatus()
Getter for field SERVSTATUSConnection service status
Specifies the service status of the connection; that is, whether it can be used for a conversation. The service status can be INSERVICE to allow usage, or to OUTSERVICE to stop usage for any new conversation. Note that setting OUTSERVICE does not end any existing conversations that are using the resource; the status is GOINGOUT until the existing conversations end.
-
getState
IFEPIConnection.StateValue getState()
Getter for field STATEConversation status
A 12-character value identifying the state of the conversation using the connection. The values are:
- APPLICATION - A normal application task owns the conversation
- BEGINSESSION - A begin-session handling task owns the conversation
- FREE - An end-session handling task owns the conversation, following a FEPI FREE command
- NOCONV - No conversation is active on the connection
- PENDBEGIN - A begin-session handling task has been scheduled
- PENDDATA - FEPI is waiting for inbound data, following a FEPI START command
- PENDFREE - An end-session handling task has been scheduled, following a FEPI FREE command
- PENDPASS - The conversation is unowned, following a FEPI FREE PASS command
- PENDRELEASE - An end-session handling task has been scheduled, following an unbind request
- PENDSTART - Inbound data having arrived, a task specified by FEPI START has been scheduled
- PENDSTSN - An STSN-handling task has been scheduled
- PENDUNSOL - An unsolicited-data handling task has been scheduled
- RELEASE - An end-session handling task owns the conversation, following an unbind request
- STSN An STSN-handling task owns the conversation
- UNSOLDATA - An unsolicited-data handling task owns the conversation
-
getWaitconvnum
java.lang.Long getWaitconvnum()
Getter for field WAITCONVNUMNumber of conversations waiting for connection
The total number of conversations waiting for this connection
-
getUserdata
java.lang.String getUserdata()
Getter for field USERDATAUser data for connection
The user data for the connection
-
getCICSObjectReference
IFEPIConnectionReference getCICSObjectReference()
- Specified by:
getCICSObjectReferencein interfaceICICSObject- Specified by:
getCICSObjectReferencein interfaceICICSResource
-
-