[java-idp-plugin-scripting] 03/15: Add (non working)Installer Deatils

Ian Young ian at iay.org.uk
Mon Jun 22 13:03:39 UTC 2020


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

iay pushed a commit to branch master
in repository java-idp-plugin-scripting.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-scripting.git;a=commit;h=6f5e22b018a548a620a8a35fb03391cd37038faf

commit 6f5e22b018a548a620a8a35fb03391cd37038faf
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat May 9 14:11:54 2020 +0100

    Add (non working)Installer Deatils
---
 .../scripting/nashorn/InstallerDetails.java        | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/nashorn-impl/src/main/java/net/shibboleth/plugins/scripting/nashorn/InstallerDetails.java b/nashorn-impl/src/main/java/net/shibboleth/plugins/scripting/nashorn/InstallerDetails.java
new file mode 100644
index 0000000..681874c
--- /dev/null
+++ b/nashorn-impl/src/main/java/net/shibboleth/plugins/scripting/nashorn/InstallerDetails.java
@@ -0,0 +1,42 @@
+/**
+ * 
+ */
+package net.shibboleth.plugins.scripting.nashorn;
+
+import java.util.List;
+
+import net.shibboleth.utilities.java.support.plugin.PluginInstaller;
+import net.shibboleth.utilities.java.support.resource.Resource;
+
+/**
+ * Details about the nashorn scripting plugin
+ *
+ */
+public class InstallerDetails extends PluginInstaller {
+
+	@Override
+	public String getPluginId() {
+		return "net.shibboleth.plugins.scripting.nashorn";
+	}
+
+	@Override
+	public List<Resource> getUpdateResources() {
+		return ;
+	}
+
+	@Override
+	public int getMajorVersion() {
+		return 0;
+	}
+
+	@Override
+	public int getMinorVersion() {
+		return 0;
+	}
+
+	@Override
+	public int getPatchVersion() {
+		return 1;
+	}
+
+}

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


More information about the commits mailing list