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 class
IFEPIConnection.AcqstatusValue
Enumeration type for field ACQSTATUSstatic class
IFEPIConnection.InstlstatusValue
Enumeration type for field INSTLSTATUSstatic class
IFEPIConnection.ServstatusValue
Enumeration type for field SERVSTATUSstatic class
IFEPIConnection.StateValue
Enumeration 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.AcqstatusValue
getAcqstatus()
Getter for field ACQSTATUSjava.lang.Long
getAcquires()
Getter for field ACQUIRESjava.lang.Long
getCharsrecvd()
Getter for field CHARSRECVDjava.lang.Long
getCharssent()
Getter for field CHARSSENTIFEPIConnectionReference
getCICSObjectReference()
java.lang.Long
getConversatns()
Getter for field CONVERSATNSjava.lang.Long
getErrors()
Getter for field ERRORSIFEPIConnection.InstlstatusValue
getInstlstatus()
Getter for field INSTLSTATUSjava.lang.Long
getLastacqcode()
Getter for field LASTACQCODEjava.lang.String
getNodename()
Getter for field NODENAMEICICSType<IFEPIConnection>
getObjectType()
java.lang.String
getPoolname()
Getter for field POOLNAMEjava.lang.Long
getRecvtimeout()
Getter for field RECVTIMEOUTIFEPIConnection.ServstatusValue
getServstatus()
Getter for field SERVSTATUSIFEPIConnection.StateValue
getState()
Getter for field STATEjava.lang.String
getTargetname()
Getter for field TARGETNAMEjava.lang.Long
getUnsolicinp()
Getter for field UNSOLICINPjava.lang.String
getUserdata()
Getter for field USERDATAjava.lang.Long
getWaitconvnum()
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:
getObjectType
in interfaceICICSObject
- Specified by:
getObjectType
in 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:
getCICSObjectReference
in interfaceICICSObject
- Specified by:
getCICSObjectReference
in interfaceICICSResource
-
-