valerio-crescia commented on code in PR #1395:
URL: https://github.com/apache/syncope/pull/1395#discussion_r3297046246


##########
core/persistence-neo4j/src/main/java/org/apache/syncope/core/persistence/neo4j/entity/am/Neo4jSAML2SPClientApp.java:
##########
@@ -184,10 +235,256 @@
         return encryptAssertions;
     }
 
+    @Override
+    public void setMetadataCriteriaPattern(final String 
metadataCriteriaPattern) {
+        this.metadataCriteriaPattern = metadataCriteriaPattern;
+    }
+
+    @Override
+    public String getMetadataCriteriaPattern() {
+        return metadataCriteriaPattern;
+    }
+
+    @Override
+    public void setSubjectLocality(final String subjectLocality) {
+        this.subjectLocality = subjectLocality;
+    }
+
+    @Override
+    public String getSubjectLocality() {
+        return subjectLocality;
+    }
+
+    @Override
+    public void setMetadataCriteriaDirection(final MetadataCriteriaDirection 
metadataCriteriaDirection) {
+        this.metadataCriteriaDirection = metadataCriteriaDirection;
+    }
+
+    @Override
+    public MetadataCriteriaDirection getMetadataCriteriaDirection() {
+        return metadataCriteriaDirection;
+    }
+
+    @Override
+    public void setSigningCredentialType(final SigningCredentialType 
signingCredentialType) {
+        this.signingCredentialType = signingCredentialType;
+    }
+
+    @Override
+    public SigningCredentialType getSigningCredentialType() {
+        return signingCredentialType;
+    }
+
+    @Override
+    public void setLogoutResponseBinding(final SAML2BindingType 
logoutResponseBinding) {
+        this.logoutResponseBinding = logoutResponseBinding;
+    }
+
+    @Override
+    public SAML2BindingType getLogoutResponseBinding() {
+        return logoutResponseBinding;
+    }
+
+    @Override
+    public void setRequireSignedRoot(final boolean requireSignedRoot) {
+        this.requireSignedRoot = requireSignedRoot;
+    }
+
+    @Override
+    public boolean isRequireSignedRoot() {
+        return requireSignedRoot;
+    }
+
+    @Override
+    public void setLogoutResponseEnabled(final boolean logoutResponseEnabled) {
+        this.logoutResponseEnabled = logoutResponseEnabled;
+    }
+
+    @Override
+    public boolean isLogoutResponseEnabled() {
+        return logoutResponseEnabled;
+    }
+
     @Override
     public void setEncryptAssertions(final boolean encryptAssertions) {
         this.encryptAssertions = encryptAssertions;
     }
+    
+    
+
+    @Override
+    public boolean isEncryptAttributes() {
+        return encryptAttributes;
+    }
+
+    @Override
+    public void setEncryptAttributes(final boolean encryptAttributes) {
+        this.encryptAttributes = encryptAttributes;
+    }
+
+    @Override
+    public boolean isSkipGeneratingAssertionNameId() {
+        return skipGeneratingAssertionNameId;
+    }
+
+    public void setSkipGeneratingAssertionNameId(final boolean 
skipGeneratingAssertionNameId) {

Review Comment:
   Ops, I miss the override



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to