Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(jans-keycloak-integration): update kc saml integration into ce and cn #8776 #8806

Merged
merged 48 commits into from
Jun 28, 2024

fix(jans-keycloak-integration): fix build issue after bumping keycloa…

98f2213
Select commit
Loading
Failed to load commit list.
Merged

feat(jans-keycloak-integration): update kc saml integration into ce and cn #8776 #8806

fix(jans-keycloak-integration): fix build issue after bumping keycloa…
98f2213
Select commit
Loading
Failed to load commit list.
DryRunSecurity / Authn/Authz Analyzer succeeded Jun 28, 2024 in 4s

DryRun Security

Details

Authn/Authz Analyzer Findings: 1 detected

⚠️ Potential Authn/Authz Function Used or Modified jans-keycloak-integration/spi/src/main/java/io/jans/kc/spi/rest/JansAuthResponseResourceProvider.java (click for details)
Type Potential Authn/Authz Function Used or Modified
Description The class JansAuthResponseResourceProvider is likely related to authentication or authorization functionality. The class name suggests that it is responsible for providing resources related to authentication or authorization for a realm (a security domain) in a web application. Additionally, the import statements indicate the use of the jakarta.ws.rs.core.Response and org.jboss.resteasy.reactive.NoCache classes, which are commonly used in the context of web services and authentication/authorization handling.
Filename jans-keycloak-integration/spi/src/main/java/io/jans/kc/spi/rest/JansAuthResponseResourceProvider.java
CodeLink
import jakarta.ws.rs.core.Response;
import org.jboss.logging.Logger;
import org.jboss.resteasy.reactive.NoCache;
public class JansAuthResponseResourceProvider implements RealmResourceProvider {