17 #ifndef IENDPOINTATTACHSTATUSLISTENER_HPP_ 
   18 #define IENDPOINTATTACHSTATUSLISTENER_HPP_ 
   32 class IEndpointAttachStatusListener {
 
   42     virtual void onAttachSuccess(
const std::string& userExternalId, 
const std::string& endpointAccessToken) = 0;
 
   47     virtual void onAttachFailure() = 0;
 
   55     virtual void onDetachSuccess(
const std::string& endpointAccessToken) = 0;
 
   60     virtual void onDetachFailure() = 0;
 
   62     virtual ~IEndpointAttachStatusListener() {}