Package com.avaya.clientservices.client
Interface CreateUserCompletionHandler
-
public interface CreateUserCompletionHandlerInterface to be implemented by applications to get the asynchronous result fromClient.createUser().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(UserCreatedException error)Reports that the operation has failed.voidonSuccess(User user)Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess(User user)
Reports that the operation was successfully completed.- Parameters:
user- The created user.
-
onError
void onError(UserCreatedException error)
Reports that the operation has failed.- Parameters:
error- Information about failure details.
-
-