[java-opensaml] branch main updated: Javadoc

Codeberg noreply at shibboleth.net
Sun Jul 26 12:31:12 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-opensaml.

View the commit online:
https://codeberg.org/Shibboleth/java-opensaml/commit/ed42c417c01ddfdde8878e0eceacbaf49d23fe26

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

commit ed42c417c01ddfdde8878e0eceacbaf49d23fe26
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Jul 26 13:19:55 2026 +0100

    Javadoc
---
 .../opensaml/spring/credential/AbstractCredentialFactoryBean.java    | 4 ++--
 .../spring/trust/AbstractBasicPKIXValidationInfoFactoryBean.java     | 4 ++--
 .../spring/trust/ChainingSignatureTrustEngineFactoryBean.java        | 4 ++--
 .../org/opensaml/spring/trust/ChainingTrustEngineFactoryBean.java    | 5 ++---
 .../java/org/opensaml/spring/trust/StaticExplicitKeyFactoryBean.java | 4 ++--
 .../main/java/org/opensaml/spring/trust/StaticPKIXFactoryBean.java   | 4 ++--
 6 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/credential/AbstractCredentialFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/credential/AbstractCredentialFactoryBean.java
index 2fbbfa116..f1086ddd1 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/credential/AbstractCredentialFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/credential/AbstractCredentialFactoryBean.java
@@ -28,7 +28,7 @@ import net.shibboleth.shared.spring.factory.AbstractComponentAwareFactoryBean;
  * {@link org.opensaml.security.credential.AbstractCredential}.
  * @param <T> the type of credential to create.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(Credential)} from this class in V6.
  */
 public abstract class AbstractCredentialFactoryBean<T extends Credential> extends AbstractComponentAwareFactoryBean<T> {
 
@@ -145,7 +145,7 @@ public abstract class AbstractCredentialFactoryBean<T extends Credential> extend
      * {@inheritDoc}
      *
      * <p>Call a destroy method if aposite.</p>
-     * <p> We do not call the parent tear down so as to avoid any deprecation logging</>
+     * <p> We do not call the parent tear down so as to avoid any deprecation logging</p>
      */
     @Override protected void destroyInstance(@Nullable final T instance) throws Exception {
         AnnotationsSupport.callOnTeardownAnnotations(instance);
diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/trust/AbstractBasicPKIXValidationInfoFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/trust/AbstractBasicPKIXValidationInfoFactoryBean.java
index d8c652c65..9e1ab70b9 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/trust/AbstractBasicPKIXValidationInfoFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/trust/AbstractBasicPKIXValidationInfoFactoryBean.java
@@ -29,7 +29,7 @@ import net.shibboleth.shared.spring.factory.AbstractComponentAwareFactoryBean;
 /**
  * A factory bean to collect information to do with a {@link BasicPKIXValidationInformation}.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(BasicPKIXValidationInformation)} from this class in V6.
  */
 public abstract class AbstractBasicPKIXValidationInfoFactoryBean extends
         AbstractComponentAwareFactoryBean<BasicPKIXValidationInformation> {
@@ -92,7 +92,7 @@ public abstract class AbstractBasicPKIXValidationInfoFactoryBean extends
      * {@inheritDoc}
      *
      * <p>Call a destroy method if aposite.</p>
-     * <p> We do not call the parent tear down so as to avoid any deprecation logging</>
+     * <p> We do not call the parent tear down so as to avoid any deprecation logging</p>
      */
     @Override protected void destroyInstance(@Nullable final BasicPKIXValidationInformation instance) throws Exception {
         AnnotationsSupport.callOnTeardownAnnotations(instance);
diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingSignatureTrustEngineFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingSignatureTrustEngineFactoryBean.java
index 87de123c2..7cdf67a9c 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingSignatureTrustEngineFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingSignatureTrustEngineFactoryBean.java
@@ -32,7 +32,7 @@ import org.opensaml.xmlsec.signature.support.impl.ChainingSignatureTrustEngine;
  * and return a bean of type object and these cannot be injected into the trust engine. This factory just filters the
  * unsupported engines out. A warning has been issued at point of parse so no further logging is required.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(ChainingSignatureTrustEngine)} from this class in V6.
  */
 public class ChainingSignatureTrustEngineFactoryBean extends
         AbstractComponentAwareFactoryBean<ChainingSignatureTrustEngine> {
@@ -77,7 +77,7 @@ public class ChainingSignatureTrustEngineFactoryBean extends
      * {@inheritDoc}
     *
     * <p>Call a destroy method if aposite.</p>
-    * <p> We do not call the parent tear down so as to avoid any deprecation logging</>
+    * <p> We do not call the parent tear down so as to avoid any deprecation logging</p>
     */
    @Override protected void destroyInstance(@Nullable final ChainingSignatureTrustEngine instance) throws Exception {
        AnnotationsSupport.callOnTeardownAnnotations(instance);
diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingTrustEngineFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingTrustEngineFactoryBean.java
index caacd4b82..60769e287 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingTrustEngineFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/trust/ChainingTrustEngineFactoryBean.java
@@ -32,7 +32,7 @@ import net.shibboleth.shared.spring.factory.AbstractComponentAwareFactoryBean;
  * and return a bean of type object and these cannot be injected into the trust engine. This factory just filters the
  * unsupported engines out. A warning has been issued at point of parse so no further logging is required.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(ChainingTrustEngine)} from this class in V6.
  */
 public class ChainingTrustEngineFactoryBean extends
         AbstractComponentAwareFactoryBean<ChainingTrustEngine<?>> {
@@ -77,8 +77,7 @@ public class ChainingTrustEngineFactoryBean extends
 
     /**
      * {@inheritDoc}
-     * <p> We do not call the parent tear down so as to avoid any deprecation logging.
-     * </>
+     * <p> We do not call the parent tear down so as to avoid any deprecation logging.</p>
      */
     @Override protected void destroyInstance(@Nullable final ChainingTrustEngine<?> instance) throws Exception {
         AnnotationsSupport.callOnTeardownAnnotations(instance);
diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticExplicitKeyFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticExplicitKeyFactoryBean.java
index 56d1be659..2d6795993 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticExplicitKeyFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticExplicitKeyFactoryBean.java
@@ -47,7 +47,7 @@ import net.shibboleth.shared.spring.factory.AbstractComponentAwareFactoryBean;
 /**
  * Factory bean for simple use cases involving the {@link ExplicitKeyTrustEngine} and static credentials.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(ExplicitKeyTrustEngine)} from this class in V6.
  *
  * @since 3.3.0
  */
@@ -141,7 +141,7 @@ public class StaticExplicitKeyFactoryBean extends AbstractComponentAwareFactoryB
      * {@inheritDoc}
      *
      * <p>Call a destroy method if aposite.</p>
-     * <p> We do not call the parent tear down so as to avoid any deprecation logging</>
+     * <p> We do not call the parent tear down so as to avoid any deprecation logging</p>
      */
     @Override protected void destroyInstance(@Nullable final ExplicitKeyTrustEngine instance) throws Exception {
         AnnotationsSupport.callOnTeardownAnnotations(instance);
diff --git a/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticPKIXFactoryBean.java b/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticPKIXFactoryBean.java
index 6f9ac57ac..1fbc96da8 100644
--- a/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticPKIXFactoryBean.java
+++ b/opensaml-spring/src/main/java/org/opensaml/spring/trust/StaticPKIXFactoryBean.java
@@ -54,7 +54,7 @@ import net.shibboleth.shared.spring.factory.AbstractComponentAwareFactoryBean;
 /**
  * File system specific bean for PKIXX509CredentialTrustEngine.
  *
- * TODO: Remove the {@link #destroyInstance()} from this class in V6.
+ * TODO: Remove the {@link #destroyInstance(PKIXX509CredentialTrustEngine)} from this class in V6.
  *
  * @since 3.3.0
  */
@@ -283,7 +283,7 @@ public class StaticPKIXFactoryBean extends AbstractComponentAwareFactoryBean<PKI
      * {@inheritDoc}
      *
      * <p>Call a destroy method if aposite.</p>
-     * <p> We do not call the parent tear down so as to avoid any deprecation logging</>
+     * <p> We do not call the parent tear down so as to avoid any deprecation logging</p>
      */
     @Override protected void destroyInstance(@Nullable final PKIXX509CredentialTrustEngine instance) throws Exception {
         AnnotationsSupport.callOnTeardownAnnotations(instance);

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


More information about the commits mailing list