mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-16 06:23:10 +00:00
DS-3542 status endpoint
This commit is contained in:
@@ -65,8 +65,8 @@ 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="session_salt", length = 16)
|
||||
private String sessionSalt;
|
||||
|
||||
@Column(name="digest_algorithm", length = 16)
|
||||
private String digestAlgorithm;
|
||||
@@ -437,11 +437,11 @@ public class EPerson extends DSpaceObject implements DSpaceObjectLegacySupport
|
||||
return ePersonService;
|
||||
}
|
||||
|
||||
public String getJwtSalt() {
|
||||
return jwtSalt;
|
||||
public String getSessionSalt() {
|
||||
return sessionSalt;
|
||||
}
|
||||
|
||||
public void setJwtSalt(String jwtSalt) {
|
||||
this.jwtSalt = jwtSalt;
|
||||
public void setSessionSalt(String sessionSalt) {
|
||||
this.sessionSalt = sessionSalt;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user