Package com.isode.som.pumice
Interface SomPumiceHandler
-
- All Superinterfaces:
SomHandler
- All Known Implementing Classes:
SomPumiceConnection
,SomPumiceMailbox
,SomPumiceMessage
,SomPumiceMessageStore
public interface SomPumiceHandler extends SomHandler
Interface for classes which will handle responses to SOM Pumice commands- Author:
- tc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleResponse(SomCommand command, int status, SomPumiceConnection object)
void
handleResponse(SomCommand command, int status, SomPumiceMailbox object)
void
handleResponse(SomCommand command, int status, SomPumiceMessage object)
void
handleResponse(SomCommand command, int status, java.lang.String detail)
Generic command response handlervoid
handleResponse(SomCommand command, int status, java.lang.String[] pairs)
-
Methods inherited from interface com.isode.som.SomHandler
handleBindResponse
-
-
-
-
Method Detail
-
handleResponse
void handleResponse(SomCommand command, int status, java.lang.String detail)
Description copied from interface:SomHandler
Generic command response handler- Specified by:
handleResponse
in interfaceSomHandler
- Parameters:
command
- the command to which the response appliesstatus
- status from commanddetail
- error detail
-
handleResponse
void handleResponse(SomCommand command, int status, java.lang.String[] pairs)
-
handleResponse
void handleResponse(SomCommand command, int status, SomPumiceMailbox object)
-
handleResponse
void handleResponse(SomCommand command, int status, SomPumiceMessage object)
-
handleResponse
void handleResponse(SomCommand command, int status, SomPumiceConnection object)
-
-