Package com.isode.som.qmgr
Interface SomQmgrHandler
-
- All Superinterfaces:
SomHandler
- All Known Implementing Classes:
SomQmgrAssociation
,SomQmgrChannel
,SomQmgrHandlerAdapter
,SomQmgrInboundMessage
,SomQmgrMessage
,SomQmgrMta
,SomQmgrQueueManager
,SomQmgrSchedule
public interface SomQmgrHandler extends SomHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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, java.lang.String detail)
Handles the response to control commands which return an OK/error response plus an info stringvoid
handleResponse(SomCommand command, int status, java.lang.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 Detail
-
handleResponse
void handleResponse(SomCommand command, int status, java.lang.String detail)
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
void handleResponse(SomCommand command, int status, java.lang.String[] pairs)
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
void handleResponse(SomCommand command, int status, SomQmgrChannel object)
Handles the response to commands which return a list of channel objects- Parameters:
command
- the SOM commandstatus
- operation statusobject
- a channel object
-
handleResponse
void handleResponse(SomCommand command, int status, SomQmgrMta object)
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
void handleResponse(SomCommand command, int status, SomQmgrMessage object)
Handles the response to commands which return a list of message objects- Parameters:
command
- the SOM commandstatus
- operation statusobject
- a qmgr message object
-
handleResponse
void handleResponse(SomCommand command, int status, SomMessage object)
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
-
-