How can I access OpenIdConnectProvider classes in 7.4 U34+?
Written By
Madeleine Clay
How To articles are not official guidelines or officially
supporteddocumentation. They are community-contributed content and may
not alwaysreflect the latest updates to Liferay DXP. We welcome your
feedback toimprove How to articles!
While we make every effort to ensure this Knowledge Base is accurate,
itmay not always reflect the most recent updates or official
guidelines.We appreciate your understanding and encourage you to reach
out with anyfeedback or concerns.
Legacy Article
You are viewing an article from our legacy
"FastTrack"publication program, made available for
informational purposes. Articlesin this program were published without a
requirement for independentediting or verification and are provided
"as is" withoutguarantee.
Before using any information from this article, independently verify
itssuitability for your situation and project.
Issue
- The Liferay classes
com.liferay.portal.security.sso.openid.connect.OpenIdConnectProvider;
and com.liferay.portal.security.sso.openid.connect.OpenIdConnectProviderRegistry;
were removed in U34+ by LPS-150092.
- How can I replace them in my customization?
Resolution
-
One way to achieve replacement classes is to recreate the
OpenIdConnectProviderRegistryImpl.findOpenIdConnectProvider
method through customizations.
-
This will require retrieving all entries from the
_configuration
table which begins with com.liferay.portal.security.sso.openid.connect.internal.configuration.OpenIdConnectProviderConfiguration
, and then iterating through and find the one with the matching providerName
.
-
We did this before via an in-memory map (see LPS-150092 for more details). Basically, upon server startup or configuration addition/subtraction, we would update the map as providerName (key) to configuration (value). From there we could easily look up the configurations.
- You could also skip the map and just perform the configuration retrieval and filtering per request.
-
Alternatively, you may be able to access the data using the following script, since we now create an
OAuthClientEntry
for each OpenID Connect connection.
Did this article resolve your issue ?