[java-identity-provider] branch main updated: PluginDescription had become IdPPlugin

Rod Widdowson rdw at steadingsoftware.com
Tue Oct 20 10:52:16 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=395dfa91328cb5b8eee944135f553d352db66b7e

The following commit(s) were added to refs/heads/main by this push:
       new  395dfa913 PluginDescription had become IdPPlugin
395dfa913 is described below

commit 395dfa91328cb5b8eee944135f553d352db66b7e
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Oct 20 11:47:40 2020 +0100

    PluginDescription had become IdPPlugin
---
 idp-war/src/main/webapp/WEB-INF/jsp/status.jsp | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/idp-war/src/main/webapp/WEB-INF/jsp/status.jsp b/idp-war/src/main/webapp/WEB-INF/jsp/status.jsp
index 84e9e0a11..5c6aa1152 100644
--- a/idp-war/src/main/webapp/WEB-INF/jsp/status.jsp
+++ b/idp-war/src/main/webapp/WEB-INF/jsp/status.jsp
@@ -17,7 +17,7 @@
 <%@ page import="com.codahale.metrics.MetricSet" %>
 <%@ page import="com.codahale.metrics.Gauge" %>
 <%@ page import="net.shibboleth.idp.module.IdPModule" %>
-<%-- <%@ page import="net.shibboleth.idp.plugin.PluginDescription" %> --%>
+<%@ page import="net.shibboleth.idp.plugin.IdPPlugin" %>
 <%@ page import="net.shibboleth.idp.module.ModuleContext" %>
 <%@ page import="net.shibboleth.idp.saml.metadata.impl.ReloadingRelyingPartyMetadataProvider" %>
 <%@ page import="net.shibboleth.idp.attribute.resolver.AttributeResolver" %>
@@ -58,11 +58,9 @@ for (final IdPModule module : ServiceLoader.load(IdPModule.class)) {
 out.println();
 
 out.println("installed plugins: ");
-/**
-  for (final PluginDescription plugin : ServiceLoader.load(PluginDescription.class)) {
+for (final IdPPlugin plugin : ServiceLoader.load(IdPPlugin.class)) {
     out.println("\t" + plugin.getPluginId() + " Version " + plugin.getMajorVersion() + "." + plugin.getMinorVersion() + "." + plugin.getPatchVersion());
-  }
-**/
+}
 out.println();
 
 

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


More information about the commits mailing list