From ff7bef0d9003fc593de6ec030b99fc95eb302e4f Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Tue, 3 Dec 2019 12:05:37 +0100 Subject: [PATCH] Improving plugin --- .../vremanagement/helloworld/HelloWorldPluginDeclaration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/gcube/vremanagement/helloworld/HelloWorldPluginDeclaration.java b/src/main/java/org/gcube/vremanagement/helloworld/HelloWorldPluginDeclaration.java index 776e761..f9280a8 100644 --- a/src/main/java/org/gcube/vremanagement/helloworld/HelloWorldPluginDeclaration.java +++ b/src/main/java/org/gcube/vremanagement/helloworld/HelloWorldPluginDeclaration.java @@ -25,7 +25,7 @@ public class HelloWorldPluginDeclaration implements PluginDeclaration { */ public static final String NAME = "HelloWorld"; - public static final String DESCRIPTION = "Hello World Description"; + public static final String DESCRIPTION = "Hello World Smart Executor Plugin"; public static final String VERSION = "1.0.0"; @@ -57,7 +57,7 @@ public class HelloWorldPluginDeclaration implements PluginDeclaration { @Override public Map getSupportedCapabilities() { Map discoveredCapabilities = new HashMap(); - discoveredCapabilities.put("FakeKey", "FakeValue"); + discoveredCapabilities.put("HelloKey", "HelloValue"); return discoveredCapabilities; }