SilentAuthenticationCallback Interface

public interface SilentAuthenticationCallback

Method Summary

Modifier and Type Method and Description
void onError(final MsalException exception)

Error occurs during the authentication.

void onSuccess(final IAuthenticationResult authenticationResult)

Authentication finishes successfully.

Method Details

onError

public void onError(final MsalException exception)

Error occurs during the authentication.

Parameters:

exception - The MsalException contains the error code, error message and cause if applicable. The exception returned in the callback could be MsalClientException, MsalServiceException or MsalUiRequiredException.

onSuccess

public void onSuccess(final IAuthenticationResult authenticationResult)

Authentication finishes successfully.

Parameters:

authenticationResult -

IAuthenticationResult that contains the success response.

Applies to