-
Notifications
You must be signed in to change notification settings - Fork 840
WIP: initialize OpenSAML in one class #3223
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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,8 +1,11 @@ | ||||||
| package org.cloudfoundry.identity.uaa.provider.saml; | ||||||
|
|
||||||
| import lombok.extern.slf4j.Slf4j; | ||||||
| import net.shibboleth.utilities.java.support.xml.ParserPool; | ||||||
| import org.cloudfoundry.identity.uaa.provider.SamlIdentityProviderDefinition; | ||||||
| import org.opensaml.core.config.ConfigurationService; | ||||||
| import org.opensaml.core.xml.XMLObject; | ||||||
|
||||||
| import org.opensaml.core.xml.XMLObject; |
Copilot
AI
Jul 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The method name initialize suggests side effects but only returns a boolean. Consider renaming to isInitialized or changing it to void initialize() to make its purpose clearer.
| public static boolean initialize() { | |
| public static boolean isInitialized() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import is never used in the class. Consider removing
SamlIdentityProviderDefinitionto clean up unused imports.