[java-idp-plugin-totp] branch main updated: Rename main plugin interface and classes.
Scott Cantor
cantor.2 at osu.edu
Thu Oct 1 16:16:14 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-totp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-totp.git;a=commit;h=446caa5817c771368d01f2a875e41bb03dac424b
The following commit(s) were added to refs/heads/main by this push:
new 446caa5 Rename main plugin interface and classes.
446caa5 is described below
commit 446caa5817c771368d01f2a875e41bb03dac424b
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Oct 1 12:16:11 2020 -0400
Rename main plugin interface and classes.
---
.../idp/plugin/totp/{TOTPDescription.java => TOTPPlugin.java} | 4 ++--
.../resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin | 1 +
.../META-INF/services/net.shibboleth.idp.plugin.PluginDescription | 1 -
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPDescription.java b/totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPPlugin.java
similarity index 93%
rename from totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPDescription.java
rename to totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPPlugin.java
index 4a97531..d4c7641 100644
--- a/totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPDescription.java
+++ b/totp-impl/src/main/java/net/shibboleth/idp/plugin/totp/TOTPPlugin.java
@@ -26,14 +26,14 @@ import javax.annotation.Nonnull;
import org.springframework.core.io.ClassPathResource;
-import net.shibboleth.idp.plugin.AbstractPluginDescription;
+import net.shibboleth.idp.plugin.AbstractIdPPlugin;
import net.shibboleth.utilities.java.support.annotation.constraint.NonnullElements;
import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty;
/**
* Details about the TOTP login plugin.
*/
-public class TOTPDescription extends AbstractPluginDescription {
+public class TOTPPlugin extends AbstractIdPPlugin {
/** {@inheritDoc} */
@Override
diff --git a/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin b/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin
new file mode 100644
index 0000000..480559e
--- /dev/null
+++ b/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin
@@ -0,0 +1 @@
+net.shibboleth.idp.plugin.totp.TOTPPlugin
diff --git a/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.PluginDescription b/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.PluginDescription
deleted file mode 100644
index ad98521..0000000
--- a/totp-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.PluginDescription
+++ /dev/null
@@ -1 +0,0 @@
-net.shibboleth.idp.plugin.totp.TOTPDescription
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list