[java-plugin-storage-jdbc] branch main updated: IDP-2121 Future Proofing the Module Plugin infrastructure for Future SP use
Rod Widdowson
rdw at steadingsoftware.com
Fri Jun 9 12:56:34 UTC 2023
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-plugin-storage-jdbc.
View the commit online:
http://git.shibboleth.net/view/?p=java-plugin-storage-jdbc.git;a=commit;h=905d57aaef1dc24ece107be6de627120095713ae
The following commit(s) were added to refs/heads/main by this push:
new 905d57a IDP-2121 Future Proofing the Module Plugin infrastructure for Future SP use
905d57a is described below
commit 905d57aaef1dc24ece107be6de627120095713ae
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Jun 9 13:55:53 2023 +0100
IDP-2121 Future Proofing the Module Plugin infrastructure for Future SP use
https://shibboleth.atlassian.net/browse/IDP-2121
Fix compilation break.
---
.../net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java b/jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java
index 63b3a41..720ad6d 100644
--- a/jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java
+++ b/jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java
@@ -18,8 +18,9 @@ package net.shibboleth.plugin.storage.jdbc.impl;
import java.io.IOException;
-import net.shibboleth.idp.plugin.PluginException;
+import net.shibboleth.profile.module.ModuleException;
import net.shibboleth.idp.plugin.impl.FirstPartyIdPPlugin;
+import net.shibboleth.profile.plugin.PluginException;
/**
* Plugin description about the webauthn plugin.
@@ -32,7 +33,7 @@ public class JDBCStoragePlugin extends FirstPartyIdPPlugin {
* @throws IOException if properties can't be loaded
* @throws PluginException if another error occurs
*/
- public JDBCStoragePlugin() throws IOException, PluginException {
+ public JDBCStoragePlugin() throws IOException, PluginException , ModuleException{
super(JDBCStoragePlugin.class);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list