[java-oidc-common] branch main updated: Fix Javadoc

Henri Mikkonen henri.mikkonen at iki.fi
Sat Feb 4 09:43:12 UTC 2023


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

hjmikkon pushed a commit to branch main
in repository java-oidc-common.

View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=cc05de49b69e3e1322469e435729e08b4a48240e

The following commit(s) were added to refs/heads/main by this push:
     new cc05de4  Fix Javadoc
cc05de4 is described below

commit cc05de49b69e3e1322469e435729e08b4a48240e
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Sat Feb 4 11:43:07 2023 +0200

    Fix Javadoc
---
 .../net/shibboleth/oidc/profile/config/CredentialsListFactory.java  | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/CredentialsListFactory.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/CredentialsListFactory.java
index b081ac8..be0579d 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/CredentialsListFactory.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/CredentialsListFactory.java
@@ -25,13 +25,15 @@ import java.util.stream.Collectors;
 import javax.annotation.Nonnull;
 import javax.annotation.Nullable;
 
+import net.shibboleth.oidc.security.jose.SignatureSigningConfiguration;
+
 import org.opensaml.security.credential.Credential;
 import org.springframework.beans.factory.config.AbstractFactoryBean;
 
 /** 
  * A factory that returns a list of credentials which does not contain any {@literal null} elements.
  * 
- * <p>Primarily created to support signature credential injection into the {@link BasicSignatureSigningConfiguration}
+ * <p>Primarily created to support signature credential injection into the {@link SignatureSigningConfiguration}
  * when the credential list may contain, in its raw state, {@literal null} elements.</p>
  */
 public class CredentialsListFactory extends AbstractFactoryBean<List<Credential>> {
@@ -52,11 +54,13 @@ public class CredentialsListFactory extends AbstractFactoryBean<List<Credential>
         }
     }
 
+    /** {@inheritDoc} */
     @Override
     public Class<?> getObjectType() {
         return List.class;
     }
 
+    /** {@inheritDoc} */
     @Override
     protected List<Credential> createInstance() throws Exception {
         return credentials.stream().filter(Objects::nonNull).collect(Collectors.toList());

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


More information about the commits mailing list