Skip to content

Commit 5987496

Browse files
author
Vladimir Kotal
committed
make LdapUser serializable
1 parent 048062f commit 5987496

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugins/src/opengrok/auth/entity/LdapUser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323
package opengrok.auth.entity;
2424

25+
import java.io.Serializable;
2526
import java.util.HashMap;
2627
import java.util.Map;
2728
import java.util.Set;
@@ -31,7 +32,7 @@
3132
*
3233
* @author Krystof Tulinger
3334
*/
34-
public class LdapUser {
35+
public class LdapUser implements Serializable {
3536

3637
private String mail;
3738
private String uid;

0 commit comments

Comments
 (0)