github-advanced-security[bot] commented on code in PR #1145: URL: https://github.com/apache/syncope/pull/1145#discussion_r2235182577
########## ext/scimv2/common-lib/src/main/java/org/apache/syncope/common/lib/scim/SCIMConf.java: ########## @@ -60,14 +66,26 @@ this.enterpriseUserConf = enterpriseUserConf; } - public SCIMExtensionUserConf getExtensionUserConf() { + public SCIMExtensionAnyConf getExtensionUserConf() { return extensionUserConf; } - public void setExtensionUserConf(final SCIMExtensionUserConf extensionUserConf) { + public void setExtensionUserConf(final SCIMExtensionAnyConf extensionUserConf) { this.extensionUserConf = extensionUserConf; } + public SCIMExtensionAnyConf getExtensionGroupConf() { + return extensionGroupConf; + } + + public void setExtensionGroupConf(final SCIMExtensionAnyConf extensionGroupConf) { + this.extensionGroupConf = extensionGroupConf; + } + + public List<SCIMExtensionAnyObjectConf> getExtensionAnyObjectsConf() { Review Comment: ## Exposing internal representation getExtensionAnyObjectsConf exposes the internal representation stored in field extensionAnyObjectsConf. The value may be modified [after this call to getExtensionAnyObjectsConf](1). getExtensionAnyObjectsConf exposes the internal representation stored in field extensionAnyObjectsConf. The value may be modified [after this call to getExtensionAnyObjectsConf](2). [Show more details](https://github.com/apache/syncope/security/code-scanning/2271) -- 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: dev-unsubscr...@syncope.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org