[java-idp-plugin-vci] 02/02: Bean naming aligned

Codeberg noreply at shibboleth.net
Mon Sep 7 06:26:48 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch dev/AlignProperties
in repository java-idp-plugin-vci.

View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-vci/commit/a16f7e0ab2e3cea64658da891dbc17c12b7c6a5f

commit a16f7e0ab2e3cea64658da891dbc17c12b7c6a5f
Author: Janne Lauros <janne.lauros at csc.fi>
AuthorDate: Mon Sep 7 08:40:42 2026 +0300

    Bean naming aligned
---
 .../idp/flows/oauth/status-list/assign/assign-beans.xml      | 12 ++++++------
 .../oauth/status-list/assignments/assignments-beans.xml      | 10 +++++-----
 .../idp/flows/oauth/status-list/list/list-beans.xml          | 10 +++++-----
 .../idp/flows/oauth/status-list/revoke/revoke-beans.xml      | 10 +++++-----
 .../idp/flows/openid/vci/abstract-api/abstract-api-beans.xml |  2 +-
 .../idp/flows/openid/vci/abstract/abstract-beans.xml         |  4 ++--
 .../openid/vci/credential-offer/credential-offer-beans.xml   |  4 ++--
 .../idp/flows/openid/vci/credentials/credentials-beans.xml   |  4 ++--
 .../openid/vci/issuer-metadata/issuer-metadata-beans.xml     |  4 ++--
 .../shibboleth/idp/flows/openid/vci/nonce/nonce-beans.xml    |  4 ++--
 .../shibboleth/idp/flows/openid/vci/token/token-beans.xml    | 10 +++++-----
 .../net/shibboleth/idp/service/relying-party/postconfig.xml  |  6 +++---
 .../plugin/openidvci/conf/openid-vci-credentials.xml         |  6 +++---
 13 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assign/assign-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assign/assign-beans.xml
index 7481dfe..ac2b7b7 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assign/assign-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assign/assign-beans.xml
@@ -11,17 +11,17 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
        default-init-method="initialize" default-destroy-method="destroy">
 
-  <bean id="oauth.StatusListIndexAllocator"
+  <bean id="openidvci.status-list.IndexAllocator"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.storage.StatusListIndexAllocator"
         depends-on="shibboleth.LoggingService"
-        p:id="oauth.StatusListIndexAllocator"
+        p:id="openidvci.status-list.IndexAllocator"
         p:storage-ref="#{'%{openidvci.status-list.index.StorageService:shibboleth.StorageService}'.trim()}"
         p:permutationKey="%{openidvci.status-list.index.permutationKey:}" />
 
   <bean id="AllocateIndex"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.AllocateIndex"
         scope="prototype"
-        p:statusListAllocator-ref="oauth.StatusListIndexAllocator"
+        p:statusListAllocator-ref="openidvci.status-list.IndexAllocator"
         p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier">
     <property name="expirationLookupStrategy">
       <bean class="org.geant.shibboleth.plugin.openidvci.profile.logic.CredentialExpirationLookupFunction" />
@@ -31,17 +31,17 @@
     </property>
   </bean>
 
-  <bean id="oauth.StatusListAssignmentStore"
+  <bean id="openidvci.status-list.AssignmentStore"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.storage.StatusListAssignmentStore"
         depends-on="shibboleth.LoggingService"
-        p:id="oauth.StatusListAssignmentStore"
+        p:id="openidvci.status-list.AssignmentStore"
         p:retention="%{openidvci.status-list.assignment.retention:P7D}"
         p:storage-ref="#{'%{openidvci.status-list.assignment.StorageService:shibboleth.StorageService}'.trim()}" />
 
   <bean id="AssignIndex"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.AssignIndex"
         scope="prototype"
-        p:statusListAssignmentStore-ref="oauth.StatusListAssignmentStore">
+        p:statusListAssignmentStore-ref="openidvci.status-list.AssignmentStore">
     <property name="expirationLookupStrategy">
       <bean class="org.geant.shibboleth.plugin.openidvci.profile.logic.CredentialExpirationLookupFunction" />
     </property>
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assignments/assignments-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assignments/assignments-beans.xml
index 43b58e8..6fa0fc2 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assignments/assignments-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/assignments/assignments-beans.xml
@@ -11,9 +11,9 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
        default-init-method="initialize" default-destroy-method="destroy">
 
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String"
         c:_0="http://geant.org/ns/profiles/oauth/status-list/assignments"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.status-list.assignments:OAuth.StatusList.Assignments}"/>
 
   <bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
@@ -30,17 +30,17 @@
   <bean id="shibboleth.ClientIDLookupStrategy"
         class="net.shibboleth.idp.plugin.oidc.op.messaging.context.navigate.TokenRequestClientIDLookupFunction" />
 
-  <bean id="oauth.StatusListAssignmentStore"
+  <bean id="openidvci.status-list.AssignmentStore"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.storage.StatusListAssignmentStore"
         depends-on="shibboleth.LoggingService"
-        p:id="oauth.StatusListAssignmentStore"
+        p:id="openidvci.status-list.AssignmentStore"
         p:retention="%{openidvci.status-list.assignment.retention:P7D}"
         p:storage-ref="#{'%{openidvci.status-list.assignment.StorageService:shibboleth.StorageService}'.trim()}" />
 
   <bean id="FormOutboundMessage"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.FormOutboundStatusListAssignmentsResponseMessage"
         scope="prototype"
-        p:statusListAssignmentStore-ref="oauth.StatusListAssignmentStore" />
+        p:statusListAssignmentStore-ref="openidvci.status-list.AssignmentStore" />
 
   <bean id="BuildErrorResponseFromEvent" class="net.shibboleth.oidc.profile.impl.BuildJSONErrorResponseFromEvent"
         scope="prototype" p:defaultStatusCode="400" p:defaultCode="invalid_request"
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/list/list-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/list/list-beans.xml
index 5e5f622..d9329b1 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/list/list-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/list/list-beans.xml
@@ -11,8 +11,8 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" 
        default-init-method="initialize" default-destroy-method="destroy">
        
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/oauth/status-list"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/oauth/status-list"/>
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.status-list.list:OAuth.StatusList}"/>
   
   <bean id="InitializeUnverifiedRelyingPartyContext"
@@ -40,16 +40,16 @@
         class="org.geant.shibboleth.plugin.openidvci.profile.logic.CredentialIssuerLookupFunction"
         p:issuer="%{openidvci.issuer:}" />
 
-  <bean id="oauth.StatusListStore"
+  <bean id="openidvci.status-list.Store"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.storage.StatusListStore"
         depends-on="shibboleth.LoggingService"
-        p:id="oauth.StatusListStore"
+        p:id="openidvci.status-list.Store"
         p:storage-ref="#{'%{openidvci.status-list.StorageService:shibboleth.StorageService}'.trim()}" />
 
   <bean id="FormStatusListToken"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.FormStatusListToken"
         scope="prototype"
-        p:statusListStore-ref="oauth.StatusListStore"
+        p:statusListStore-ref="openidvci.status-list.Store"
         p:ttl="%{openidvci.status-list.token.defaultLifetime:PT1H}"
         p:issuerLookupStrategy-ref="openidvci.IssuerLookupStrategy"
         p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier" />
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/revoke/revoke-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/revoke/revoke-beans.xml
index a9ab008..d9cfcc0 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/revoke/revoke-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oauth/status-list/revoke/revoke-beans.xml
@@ -11,9 +11,9 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
        default-init-method="initialize" default-destroy-method="destroy">
 
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String"
         c:_0="http://geant.org/ns/profiles/oauth/status-list/revoke"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.status-list.revoke:OAuth.StatusList.Revoke}"/>
 
   <bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
@@ -30,16 +30,16 @@
   <bean id="shibboleth.ClientIDLookupStrategy"
         class="net.shibboleth.idp.plugin.oidc.op.messaging.context.navigate.TokenRequestClientIDLookupFunction" />
 
-  <bean id="oauth.StatusListStore"
+  <bean id="openidvci.status-list.Store"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.storage.StatusListStore"
         depends-on="shibboleth.LoggingService"
-        p:id="oauth.StatusListStore"
+        p:id="openidvci.status-list.Store"
         p:storage-ref="#{'%{openidvci.status-list.StorageService:shibboleth.StorageService}'.trim()}" />
 
   <bean id="RevokeStatusListIndex"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.RevokeStatusListIndex"
         scope="prototype"
-        p:statusListStore-ref="oauth.StatusListStore" />
+        p:statusListStore-ref="openidvci.status-list.Store" />
 
   <bean id="FormOutboundMessage"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.impl.FormOutboundStatusListRevokeResponseMessage"
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract-api/abstract-api-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract-api/abstract-api-beans.xml
index e4e4c05..ac17241 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract-api/abstract-api-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract-api/abstract-api-beans.xml
@@ -11,7 +11,7 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
        default-init-method="initialize" default-destroy-method="destroy">
        
- <bean id="shibboleth.openidvci.browserProfile" class="java.lang.Boolean" c:_0="false"/>
+ <bean id="openidvci.browserProfile" class="java.lang.Boolean" c:_0="false"/>
  
  <bean id="InitializeRelyingPartyContext" class="net.shibboleth.idp.plugin.oidc.op.profile.impl.InitializeRelyingPartyContext"
     scope="prototype" p:clientIDLookupStrategy-ref="shibboleth.ClientIDLookupStrategy"/>
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract/abstract-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract/abstract-beans.xml
index e948ae7..1c330a3 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract/abstract-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/abstract/abstract-beans.xml
@@ -10,8 +10,8 @@
   <import resource="classpath*:/META-INF/net/shibboleth/idp/flows/oidc/abstract/oidc-abstract-beans.xml"/>
 
   <bean id="InitializeProfileRequestContext" class="net.shibboleth.idp.profile.impl.InitializeProfileRequestContext"
-    scope="prototype" p:profileId-ref="shibboleth.openidvci.profileId" p:loggingId-ref="shibboleth.openidvci.loggingId"
-    p:browserProfile-ref="shibboleth.openidvci.browserProfile"/>
+    scope="prototype" p:profileId-ref="openidvci.profileId" p:loggingId-ref="openidvci.loggingId"
+    p:browserProfile-ref="openidvci.browserProfile"/>
 
   <bean id="openidvci.CredentialOfferCache" class="org.geant.shibboleth.plugin.openidvci.storage.CredentialOfferCache"
     depends-on="shibboleth.LoggingService" p:storage-ref="#{'%{openidvci.StorageService:shibboleth.StorageService}'.trim()}"/>
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credential-offer/credential-offer-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credential-offer/credential-offer-beans.xml
index e34d433..bb6f225 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credential-offer/credential-offer-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credential-offer/credential-offer-beans.xml
@@ -11,8 +11,8 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" 
        default-init-method="initialize" default-destroy-method="destroy">
        
- <bean id="shibboleth.openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/credential-offer"/>
- <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+ <bean id="openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/credential-offer"/>
+ <bean id="openidvci.loggingId" class="java.lang.String"
        c:_0="%{openidvci.logging.credential-offer:OpenID.VCI.CredentialOffer}"/>
  
  <bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credentials/credentials-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credentials/credentials-beans.xml
index 6e2aa0a..c2b8651 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credentials/credentials-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/credentials/credentials-beans.xml
@@ -11,8 +11,8 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" 
        default-init-method="initialize" default-destroy-method="destroy">
        
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/credentials"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/credentials"/>
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.credentials:OpenID.VCI.Credentials}"/>
   
   <bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/issuer-metadata/issuer-metadata-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/issuer-metadata/issuer-metadata-beans.xml
index a6961be..d95603b 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/issuer-metadata/issuer-metadata-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/issuer-metadata/issuer-metadata-beans.xml
@@ -11,9 +11,9 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
        default-init-method="initialize" default-destroy-method="destroy">
 
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String"
         c:_0="http://geant.org/ns/profiles/openid/vci/issuer-metadata"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.issuer-metadata:OpenID.VCI.IssuerMetadata}"/>
 
   <bean id="InitializeUnverifiedRelyingPartyContext"
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/nonce/nonce-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/nonce/nonce-beans.xml
index 9fd0b4a..e937c8b 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/nonce/nonce-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/nonce/nonce-beans.xml
@@ -11,8 +11,8 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" 
        default-init-method="initialize" default-destroy-method="destroy">
        
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/nonce"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/nonce"/>
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.nonce:OpenID.VCI.Nonce}"/>
   
   <bean id="InitializeUnverifiedRelyingPartyContext"
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/token/token-beans.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/token/token-beans.xml
index feae2c2..7dc307c 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/token/token-beans.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/openid/vci/token/token-beans.xml
@@ -11,8 +11,8 @@
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" 
        default-init-method="initialize" default-destroy-method="destroy">
        
-  <bean id="shibboleth.openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/token"/>
-  <bean id="shibboleth.openidvci.loggingId" class="java.lang.String"
+  <bean id="openidvci.profileId" class="java.lang.String" c:_0="http://geant.org/ns/profiles/openid/vci/token"/>
+  <bean id="openidvci.loggingId" class="java.lang.String"
         c:_0="%{openidvci.logging.token:OpenID.VCI.Token}"/>
   
   <bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
@@ -24,7 +24,7 @@
   
   <bean id="UnwrapOrLocateGrant" class="org.geant.shibboleth.plugin.openidvci.profile.impl.UnwrapGrant" scope="prototype"
         c:sealer-ref="#{'%{idp.oidc.tokenSealer:shibboleth.oidc.TokenSealer}'.trim()}"
-        p:clientIDLookupStrategy-ref="vci.profileReq.ClientIDLookupStrategy"
+        p:clientIDLookupStrategy-ref="openidvci.ProfileRequestClientIDLookupStrategy"
         p:credentialOfferCache-ref="openidvci.CredentialOfferCache"/>
   
   <bean id="ValidateGrant" class="org.geant.shibboleth.plugin.openidvci.profile.impl.ValidateGrant" scope="prototype"
@@ -91,7 +91,7 @@
         p:dataSealer="#{getObject('%{idp.oidc.tokenSealer:shibboleth.oidc.TokenSealer}'.trim())}"
         p:xmlSafeIdentifier="%{idp.oidc.xmlSafeIdentifiers:true}"
         p:identifierGeneratorLookupStrategy-ref="shibboleth.oidc.DefaultIdentifierGenerationStrategy"
-        p:clientIDLookupStrategy-ref="vci.profileReq.ClientIDLookupStrategy"
+        p:clientIDLookupStrategy-ref="openidvci.ProfileRequestClientIDLookupStrategy"
         p:objectMapper-ref="#{'%{idp.oidc.logging.objectMapper:shibboleth.oidc.JSONObjectMapper}'.trim()}" />
               
   <bean id="SetOAuthAccessTokenToResponseContext"
@@ -114,7 +114,7 @@
         p:credentialOfferCache-ref="openidvci.CredentialOfferCache"
         p:dataSealer-ref="#{'%{idp.oidc.tokenSealer:shibboleth.oidc.TokenSealer}'.trim()}" />
         
-  <bean id="vci.profileReq.ClientIDLookupStrategy" parent="shibboleth.Functions.Compose"
+  <bean id="openidvci.ProfileRequestClientIDLookupStrategy" parent="shibboleth.Functions.Compose"
         c:g-ref="shibboleth.ClientIDLookupStrategy"
         c:f-ref="shibboleth.MessageContextLookup.Inbound" />
         
diff --git a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
index 2238979..73c4936 100644
--- a/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
+++ b/openid-vci-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
@@ -60,7 +60,7 @@
     <bean id="OAuth.StatusList" lazy-init="true"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.config.impl.DefaultStatusListConfiguration"
         p:securityConfiguration-ref="%{idp.security.oidc.config:shibboleth.oidc.DefaultSecurityConfiguration}"
-        p:statusListSignatureSigningConfiguration="#{getObject('oauth.statuslist.SigningConfiguration')}" />
+        p:statusListSignatureSigningConfiguration="#{getObject('openidvci.status-list.SigningConfiguration')}" />
 
     <bean id="OAuth.StatusList.Revoke" parent="AbstractVCIProfile" lazy-init="true"
         class="org.geant.shibboleth.plugin.openidvci.statuslist.profile.config.impl.DefaultStatusListRevokeConfiguration" />
@@ -122,8 +122,8 @@
         </property>
     </bean>
 
-    <bean id="oauth.statuslist.SigningConfiguration" parent="openidvci.SigningConfiguration"
-        p:signingCredentials="#{getObject('oauth.statuslist.SigningCredentials') ?: getObject('openidvci.SigningCredentials') ?: getObject('shibboleth.oidc.SigningCredentialsFactory')}" />
+    <bean id="openidvci.status-list.SigningConfiguration" parent="openidvci.SigningConfiguration"
+        p:signingCredentials="#{getObject('openidvci.status-list.SigningCredentials') ?: getObject('openidvci.SigningCredentials') ?: getObject('shibboleth.oidc.SigningCredentialsFactory')}" />
 
     <bean id="openidvci.issuerMetadata.SigningConfiguration" parent="openidvci.SigningConfiguration"
         p:signingCredentials="#{getObject('openidvci.issuerMetadata.SigningCredentials')}" />
diff --git a/openid-vci-impl/src/main/resources/org/geant/shibboleth/plugin/openidvci/conf/openid-vci-credentials.xml b/openid-vci-impl/src/main/resources/org/geant/shibboleth/plugin/openidvci/conf/openid-vci-credentials.xml
index 0ecba83..803f3c8 100644
--- a/openid-vci-impl/src/main/resources/org/geant/shibboleth/plugin/openidvci/conf/openid-vci-credentials.xml
+++ b/openid-vci-impl/src/main/resources/org/geant/shibboleth/plugin/openidvci/conf/openid-vci-credentials.xml
@@ -34,11 +34,11 @@
     -->
 
     <!--
-    <bean id="oauth.statuslist.DefaultESSigningCredential" parent="shibboleth.JWKCredential"
+    <bean id="openidvci.status-list.DefaultESSigningCredential" parent="shibboleth.JWKCredential"
         p:resource="%{openidvci.signing.status-list.es.key}" />
 
-    <util:list id="oauth.statuslist.SigningCredentials">
-        <ref bean="oauth.statuslist.DefaultESSigningCredential" />
+    <util:list id="openidvci.status-list.SigningCredentials">
+        <ref bean="openidvci.status-list.DefaultESSigningCredential" />
     </util:list>
     -->
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list