Package com.avaya.clientservices.client
Interface FIPSModeListener
-
public interface FIPSModeListenerListener for FIPS-specific events from aClient.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFIPSModeSetFailed(Client client)Called when FIPS mode cannot be successfully set when the Client is first started.voidonFIPSModeSetSucceeded(Client client)Called when FIPS mode has been successfully set when the Client is first started.voidonFIPSModeStateChanged(Client client, boolean enabled)Called when FIPS mode is changed after the initialization of the Client.
-
-
-
Method Detail
-
onFIPSModeSetSucceeded
void onFIPSModeSetSucceeded(Client client)
Called when FIPS mode has been successfully set when the Client is first started.- Parameters:
client- The client that has set the FIPS mode.
-
onFIPSModeSetFailed
void onFIPSModeSetFailed(Client client)
Called when FIPS mode cannot be successfully set when the Client is first started.- Parameters:
client- The client that has failed to set the FIPS mode.
-
onFIPSModeStateChanged
void onFIPSModeStateChanged(Client client, boolean enabled)
Called when FIPS mode is changed after the initialization of the Client.- Parameters:
client- The client that has FIPS mode changed.enabled- A flag indicating if FIPS mode is currently enabled or not.
-
-