Interface SetAuthenticationModeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetAuthenticationModeChangeImpl

public interface SetAuthenticationModeChange extends Change

Change triggered by the Set AuthenticationMode update action.


Example to create an instance using the builder pattern

     SetAuthenticationModeChange setAuthenticationModeChange = SetAuthenticationModeChange.builder()
             .change("{change}")
             .previousValue(AuthenticationMode.PASSWORD)
             .nextValue(AuthenticationMode.PASSWORD)
             .build()