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 TypeMethodDescriptionvoid
handleResponse
(SomCommand command, int status, SomMessage object) Handles the response to commands which return a SomMessage object (i.e.void
handleResponse
(SomCommand command, int status, SomQmgrChannel object) Handles the response to commands which return a list of channel objectsvoid
handleResponse
(SomCommand command, int status, SomQmgrMessage object) Handles the response to commands which return a list of message objectsvoid
handleResponse
(SomCommand command, int status, SomQmgrMta object) Handles the response to commands which return a list of MTA objectsvoid
handleResponse
(SomCommand command, int status, String detail) Handles the response to control commands which return an OK/error response plus an info stringvoid
handleResponse
(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:
handleResponse
in 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
-