This is an automated email from the ASF dual-hosted git repository.
mdisabatino pushed a commit to branch 4_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/4_0_X by this push:
new 21e2b46150 [SYNCOPE-1950] Fix Missing annotation
21e2b46150 is described below
commit 21e2b461506da0e78ade0b1d92f6466bf5119ba5
Author: Marco Di Sabatino Di Diodoro <[email protected]>
AuthorDate: Wed Feb 11 16:50:41 2026 +0100
[SYNCOPE-1950] Fix Missing annotation
---
.../persistence/neo4j/entity/am/Neo4jOIDCRPClientApp.java | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git
a/core/persistence-neo4j/src/main/java/org/apache/syncope/core/persistence/neo4j/entity/am/Neo4jOIDCRPClientApp.java
b/core/persistence-neo4j/src/main/java/org/apache/syncope/core/persistence/neo4j/entity/am/Neo4jOIDCRPClientApp.java
index cb959011a0..c476692433 100644
---
a/core/persistence-neo4j/src/main/java/org/apache/syncope/core/persistence/neo4j/entity/am/Neo4jOIDCRPClientApp.java
+++
b/core/persistence-neo4j/src/main/java/org/apache/syncope/core/persistence/neo4j/entity/am/Neo4jOIDCRPClientApp.java
@@ -354,51 +354,62 @@ public class Neo4jOIDCRPClientApp extends
AbstractClientApp implements OIDCRPCli
this.logoutUri = logoutUri;
}
-
+ @Override
public String getDeviceTokenTimeToKill() {
return deviceTokenTimeToKill;
}
+ @Override
public void setDeviceTokenTimeToKill(final String deviceTokenTimeToKill) {
this.deviceTokenTimeToKill = deviceTokenTimeToKill;
}
+ @Override
public Long getRefreshTokenMaxActiveTokens() {
return refreshTokenMaxActiveTokens;
}
+ @Override
public void setRefreshTokenMaxActiveTokens(final Long
refreshTokenMaxActiveTokens) {
this.refreshTokenMaxActiveTokens = refreshTokenMaxActiveTokens;
}
+ @Override
public String getRefreshTokenTimeToKill() {
return refreshTokenTimeToKill;
}
+ @Override
public void setRefreshTokenTimeToKill(final String refreshTokenTimeToKill)
{
this.refreshTokenTimeToKill = refreshTokenTimeToKill;
}
+ @Override
public Long getAccessTokenMaxActiveTokens() {
return accessTokenMaxActiveTokens;
}
+ @Override
public void setAccessTokenMaxActiveTokens(final Long
accessTokenMaxActiveTokens) {
this.accessTokenMaxActiveTokens = accessTokenMaxActiveTokens;
}
+ @Override
public String getAccessTokenTimeToKill() {
return accessTokenTimeToKill;
}
+ @Override
public void setAccessTokenTimeToKill(final String accessTokenTimeToKill) {
this.accessTokenTimeToKill = accessTokenTimeToKill;
}
+ @Override
public String getAccessTokenMaxTimeToLive() {
return accessTokenMaxTimeToLive;
}
+ @Override
public void setAccessTokenMaxTimeToLive(final String
accessTokenMaxTimeToLive) {
this.accessTokenMaxTimeToLive = accessTokenMaxTimeToLive;
}