public interface AccountNotificationListener
| 修飾子とタイプ | メソッドと説明 |
|---|---|
default void |
created(PasswordNotification notification)
ユーザーアカウントが作成された後呼び出されます。
|
default void |
credentialReset(PasswordNotification notification)
ユーザーアカウントのパスワードがリセットされた後呼び出されます。
|
default void |
credentialUpdated(PasswordNotification notification)
パスワードが更新された後呼び出されます。
|
default void |
init(AuthenticationPolicyDefinition policy)
AccountNotificationListener自体の初期化処理を記述可能です。
|
default void |
loginFailed(LoginNotification notification)
ログインに失敗した場合呼び出されます。
|
default void |
loginSuccess(LoginNotification notification)
ログインに成功した場合呼び出されます。
|
default void |
propertyUpdated(PropertyNotification notification)
パスワード以外の属性が更新された後呼び出されます。
|
default void |
remove(AccountNotification notification)
ユーザーアカウントが削除される場合呼び出されます。
|
default void |
rockedout(AccountNotification notification)
ユーザーアカウントがロックアウトされた後呼び出されます。
|
default void init(AuthenticationPolicyDefinition policy)
policy - AccountNotificationListenerが定義されているAuthenticationPolicyDefinitiondefault void created(PasswordNotification notification)
notification - 通知の本体default void credentialReset(PasswordNotification notification)
notification - 通知の本体default void rockedout(AccountNotification notification)
notification - 通知の本体default void credentialUpdated(PasswordNotification notification)
notification - default void propertyUpdated(PropertyNotification notification)
notification - default void remove(AccountNotification notification)
notification - default void loginSuccess(LoginNotification notification)
notification - default void loginFailed(LoginNotification notification)
notification -