Skip to content

Commit

Permalink
KEYCLOAK-1476
Browse files Browse the repository at this point in the history
  • Loading branch information
stianst committed Jun 17, 2015
1 parent 0b0b101 commit caeb710
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package org.keycloak.models;

import java.io.Serializable;

/**
* Used just in cases when we want to "directly" update or retrieve the hash or salt of user credential (For example during export/import)
*
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
*/
public class UserCredentialValueModel {
public class UserCredentialValueModel implements Serializable {

private String type;
private String value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.keycloak.models.UserCredentialValueModel;
import org.keycloak.models.UserModel;

import java.io.Serializable;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
Expand All @@ -16,7 +17,7 @@
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1 $
*/
public class CachedUser {
public class CachedUser implements Serializable {
private String id;
private String realm;
private String username;
Expand Down

0 comments on commit caeb710

Please sign in to comment.