Package com.avaya.clientservices.contact
Interface GetSelfContactCompletionHandler
-
public interface GetSelfContactCompletionHandlerDefines an interface that the client application needs to implement to receive the result of get self contact operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(ContactException error)Reports that the operation has failed.voidonSuccess(Contact contact)Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess(Contact contact)
Reports that the operation was successfully completed.- Parameters:
contact- The self contact.
-
onError
void onError(ContactException error)
Reports that the operation has failed.- Parameters:
error- Information about failure details.
-
-