Package com.avaya.clientservices.contact
Interface ContactGroupOperationCompletionHandler
-
public interface ContactGroupOperationCompletionHandlerDefines an interface that the client application needs to implement to receive the result of create contact group operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(ContactException error)Reports that the operation has failed.voidonSuccess(ContactGroup contactGroup)Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess(ContactGroup contactGroup)
Reports that the operation was successfully completed.- Parameters:
contactGroup- newly created contact group.
-
onError
void onError(ContactException error)
Reports that the operation has failed.- Parameters:
error- Information about failure details.
-
-