[java-identity-provider] branch main updated: IDP-1683 IdPPlugin Handling

Rod Widdowson rdw at steadingsoftware.com
Fri Oct 9 10:18:44 UTC 2020


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

rdw pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=24300a2b709b2a13ce306363b11c77f5ea6e4410

The following commit(s) were added to refs/heads/main by this push:
       new  24300a2b7 IDP-1683 IdPPlugin Handling
24300a2b7 is described below

commit 24300a2b709b2a13ce306363b11c77f5ea6e4410
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Oct 9 11:15:38 2020 +0100

    IDP-1683 IdPPlugin Handling
    
    https://issues.shibboleth.net/jira/browse/IDP-1683
    
    Make the AbstractIdPModule$BasicModuleResource use the parent class
    for resource loading.  This will then allow it to use the
    ClasspathLoader used to load the class itself.
---
 .../src/main/java/net/shibboleth/idp/module/AbstractIdPModule.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-admin-api/src/main/java/net/shibboleth/idp/module/AbstractIdPModule.java b/idp-admin-api/src/main/java/net/shibboleth/idp/module/AbstractIdPModule.java
index 758848740..f58cf1271 100644
--- a/idp-admin-api/src/main/java/net/shibboleth/idp/module/AbstractIdPModule.java
+++ b/idp-admin-api/src/main/java/net/shibboleth/idp/module/AbstractIdPModule.java
@@ -297,7 +297,7 @@ public abstract class AbstractIdPModule implements IdPModule {
                     throw new IOException(e);
                 }
             }
-            return getClass().getResourceAsStream(source);
+            return AbstractIdPModule.this.getClass().getResourceAsStream(source);
         }
 
         /**

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


More information about the commits mailing list