We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6dc65 commit cec5ecfCopy full SHA for cec5ecf
plugins/src/opengrok/auth/entity/LdapUser.java
@@ -39,7 +39,9 @@ public class LdapUser implements Serializable {
39
private Set<String> ou;
40
private final Map<String, Set<String>> attrs = new HashMap<>();
41
42
- private static final long serialVersionUID = 1L;
+ // Use default serial ID value. If the serialized form of the object
43
+ // changes, feel free to start from 1L.
44
+ private static final long serialVersionUID = -8207597677599370334L;
45
46
public LdapUser(String mail, String uid, Set<String> ou) {
47
this.mail = mail;
0 commit comments