Class BrokerSecurityManagerCallbackHandler
- java.lang.Object
-
- org.wso2.carbon.event.client.stub.generated.security.BrokerSecurityManagerCallbackHandler
-
public abstract class BrokerSecurityManagerCallbackHandler extends Object
BrokerSecurityManagerCallbackHandler Callback class, Users can extend this class and implement their own receiveResult and receiveError methods.
-
-
Field Summary
Fields Modifier and Type Field Description protected Object
clientData
-
Constructor Summary
Constructors Constructor Description BrokerSecurityManagerCallbackHandler()
Please use this constructor if you don't want to set any clientDataBrokerSecurityManagerCallbackHandler(Object clientData)
User can pass in any object that needs to be accessed once the NonBlocking Web service call is finished and appropriate method of this CallBack is called.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getClientData()
Get the client datavoid
receiveErrordefineSecureTopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from defineSecureTopic operationvoid
receiveErrordeleteSecureTopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from deleteSecureTopic operationvoid
receiveErrorgetAllTopics(Exception e)
auto generated Axis2 Error handler override this method for handling error response from getAllTopics operationvoid
receiveErrorgetTopicDetails(Exception e)
auto generated Axis2 Error handler override this method for handling error response from getTopicDetails operationvoid
receiveErrorrevokeATopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from revokeATopic operationvoid
receiveErrorshareATopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from shareATopic operationvoid
receiveResultdefineSecureTopic(String result)
auto generated Axis2 call back method for defineSecureTopic method override this method for handling normal response from defineSecureTopic operationvoid
receiveResultdeleteSecureTopic(String result)
auto generated Axis2 call back method for deleteSecureTopic method override this method for handling normal response from deleteSecureTopic operationvoid
receiveResultgetAllTopics(TopicNode result)
auto generated Axis2 call back method for getAllTopics method override this method for handling normal response from getAllTopics operationvoid
receiveResultgetTopicDetails(TopicDetails result)
auto generated Axis2 call back method for getTopicDetails method override this method for handling normal response from getTopicDetails operationvoid
receiveResultrevokeATopic(String result)
auto generated Axis2 call back method for revokeATopic method override this method for handling normal response from revokeATopic operationvoid
receiveResultshareATopic(String result)
auto generated Axis2 call back method for shareATopic method override this method for handling normal response from shareATopic operation
-
-
-
Field Detail
-
clientData
protected Object clientData
-
-
Constructor Detail
-
BrokerSecurityManagerCallbackHandler
public BrokerSecurityManagerCallbackHandler(Object clientData)
User can pass in any object that needs to be accessed once the NonBlocking Web service call is finished and appropriate method of this CallBack is called.- Parameters:
clientData
- Object mechanism by which the user can pass in user data that will be avilable at the time this callback is called.
-
BrokerSecurityManagerCallbackHandler
public BrokerSecurityManagerCallbackHandler()
Please use this constructor if you don't want to set any clientData
-
-
Method Detail
-
getClientData
public Object getClientData()
Get the client data
-
receiveResultshareATopic
public void receiveResultshareATopic(String result)
auto generated Axis2 call back method for shareATopic method override this method for handling normal response from shareATopic operation
-
receiveErrorshareATopic
public void receiveErrorshareATopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from shareATopic operation
-
receiveResultgetAllTopics
public void receiveResultgetAllTopics(TopicNode result)
auto generated Axis2 call back method for getAllTopics method override this method for handling normal response from getAllTopics operation
-
receiveErrorgetAllTopics
public void receiveErrorgetAllTopics(Exception e)
auto generated Axis2 Error handler override this method for handling error response from getAllTopics operation
-
receiveResultdeleteSecureTopic
public void receiveResultdeleteSecureTopic(String result)
auto generated Axis2 call back method for deleteSecureTopic method override this method for handling normal response from deleteSecureTopic operation
-
receiveErrordeleteSecureTopic
public void receiveErrordeleteSecureTopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from deleteSecureTopic operation
-
receiveResultdefineSecureTopic
public void receiveResultdefineSecureTopic(String result)
auto generated Axis2 call back method for defineSecureTopic method override this method for handling normal response from defineSecureTopic operation
-
receiveErrordefineSecureTopic
public void receiveErrordefineSecureTopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from defineSecureTopic operation
-
receiveResultgetTopicDetails
public void receiveResultgetTopicDetails(TopicDetails result)
auto generated Axis2 call back method for getTopicDetails method override this method for handling normal response from getTopicDetails operation
-
receiveErrorgetTopicDetails
public void receiveErrorgetTopicDetails(Exception e)
auto generated Axis2 Error handler override this method for handling error response from getTopicDetails operation
-
receiveResultrevokeATopic
public void receiveResultrevokeATopic(String result)
auto generated Axis2 call back method for revokeATopic method override this method for handling normal response from revokeATopic operation
-
receiveErrorrevokeATopic
public void receiveErrorrevokeATopic(Exception e)
auto generated Axis2 Error handler override this method for handling error response from revokeATopic operation
-
-