NotSerializableException: org.keycloak.models.sessions.infinispan.entities.LoginFailureKey
This commit is contained in:
parent
c8b19fa1ae
commit
b88d2f792d
2 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,11 @@
|
|||
package org.keycloak.models.sessions.infinispan.entities;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
|
||||
*/
|
||||
public class LoginFailureEntity {
|
||||
public class LoginFailureEntity implements Serializable {
|
||||
|
||||
private String username;
|
||||
private String realm;
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
package org.keycloak.models.sessions.infinispan.entities;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
|
||||
*/
|
||||
public class LoginFailureKey {
|
||||
public class LoginFailureKey implements Serializable {
|
||||
|
||||
private final String realm;
|
||||
private final String username;
|
||||
|
|
Loading…
Reference in a new issue