mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
DS-3542: invalided sessions with salt
This commit is contained in:
@@ -65,6 +65,9 @@ public class EPerson extends DSpaceObject implements DSpaceObjectLegacySupport
|
||||
@Column(name="salt", length = 32)
|
||||
private String salt;
|
||||
|
||||
@Column(name="jwt_salt", length = 16)
|
||||
private String jwtSalt;
|
||||
|
||||
@Column(name="digest_algorithm", length = 16)
|
||||
private String digestAlgorithm;
|
||||
|
||||
@@ -433,4 +436,12 @@ public class EPerson extends DSpaceObject implements DSpaceObjectLegacySupport
|
||||
}
|
||||
return ePersonService;
|
||||
}
|
||||
|
||||
public String getJwtSalt() {
|
||||
return jwtSalt;
|
||||
}
|
||||
|
||||
public void setJwtSalt(String jwtSalt) {
|
||||
this.jwtSalt = jwtSalt;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user