Package com.isode.som.qmgr
Interface SomQmgrHandler
- All Superinterfaces:
SomHandler
- All Known Implementing Classes:
SomQmgrAssociation,SomQmgrChannel,SomQmgrHandlerAdapter,SomQmgrInboundMessage,SomQmgrMessage,SomQmgrMta,SomQmgrQueueManager,SomQmgrSchedule
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleResponse(SomCommand command, int status, SomMessage object) Handles the response to commands which return a SomMessage object (i.e.voidhandleResponse(SomCommand command, int status, SomQmgrChannel object) Handles the response to commands which return a list of channel objectsvoidhandleResponse(SomCommand command, int status, SomQmgrMessage object) Handles the response to commands which return a list of message objectsvoidhandleResponse(SomCommand command, int status, SomQmgrMta object) Handles the response to commands which return a list of MTA objectsvoidhandleResponse(SomCommand command, int status, String detail) Handles the response to control commands which return an OK/error response plus an info stringvoidhandleResponse(SomCommand command, int status, String[] pairs) Handles the response to commands which return data about the current object - i.e.Methods inherited from interface com.isode.som.SomHandler
handleBindResponse
-
Method Details
-
handleResponse
Handles the response to control commands which return an OK/error response plus an info string- Specified by:
handleResponsein interfaceSomHandler- Parameters:
command- the SOM commandstatus- operation statusdetail- detail on error
-
handleResponse
Handles the response to commands which return data about the current object - i.e. we are refreshing an existing object.- Parameters:
command- the SOM commandstatus- operation statuspairs- data pairs
-
handleResponse
Handles the response to commands which return a list of channel objects- Parameters:
command- the SOM commandstatus- operation statusobject- a channel object
-
handleResponse
Handles the response to commands which return a list of MTA objects- Parameters:
command- the SOM commandstatus- operation statusobject- a SOM Qmgr MTA object
-
handleResponse
Handles the response to commands which return a list of message objects- Parameters:
command- the SOM commandstatus- operation statusobject- a qmgr message object
-
handleResponse
Handles the response to commands which return a SomMessage object (i.e. read from the Queue or Archive).- Parameters:
command- the SOM commandstatus- operation statusobject- a message object
-