You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2016/08/12 13:13:13 UTC

[25/46] incubator-taverna-plugin-gis git commit: Clean unused dependencies

Clean unused dependencies

Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-plugin-gis/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-plugin-gis/commit/cd049a20
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-plugin-gis/tree/cd049a20
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-plugin-gis/diff/cd049a20

Branch: refs/heads/taverna2
Commit: cd049a20108fe2c418e56115b75d1caa2290c30f
Parents: 259bed3
Author: edikaradumi <ed...@gmail.com>
Authored: Wed Aug 3 05:34:00 2016 +0100
Committer: edikaradumi <ed...@gmail.com>
Committed: Wed Aug 3 05:34:00 2016 +0100

----------------------------------------------------------------------
 .../gis/GisActivityConfigurationBean.java       | 23 +-------------------
 1 file changed, 1 insertion(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-plugin-gis/blob/cd049a20/apache-taverna-plugin-gis-activity/src/main/java/org/apache/taverna/gis/GisActivityConfigurationBean.java
----------------------------------------------------------------------
diff --git a/apache-taverna-plugin-gis-activity/src/main/java/org/apache/taverna/gis/GisActivityConfigurationBean.java b/apache-taverna-plugin-gis-activity/src/main/java/org/apache/taverna/gis/GisActivityConfigurationBean.java
index 4f42986..1372540 100644
--- a/apache-taverna-plugin-gis-activity/src/main/java/org/apache/taverna/gis/GisActivityConfigurationBean.java
+++ b/apache-taverna-plugin-gis-activity/src/main/java/org/apache/taverna/gis/GisActivityConfigurationBean.java
@@ -2,37 +2,16 @@ package org.apache.taverna.gis;
 
 import java.io.Serializable;
 import java.net.URI;
-import java.util.List;
 
-import net.opengis.wps.x100.InputDescriptionType;
-import net.opengis.wps.x100.OutputDescriptionType;
 import net.sf.taverna.t2.workflowmodel.processor.activity.config.ActivityPortsDefinitionBean;
 
 /**
  * Gis activity configuration bean.
  * 
  */
+@SuppressWarnings("serial")
 public class GisActivityConfigurationBean extends ActivityPortsDefinitionBean implements Serializable {
 
-	/*
-	 * TODO: Remove this comment. Should the jackson ojbect be managed in this class?
-	 * 
-	 * The configuration specifies the variable options and configurations for
-	 * an activity that has been added to a workflow. For instance for a WSDL
-	 * activity, the configuration contains the URL for the WSDL together with
-	 * the method name. String constant configurations contain the string that
-	 * is to be returned, while Beanshell script configurations contain both the
-	 * scripts and the input/output ports (by subclassing
-	 * ActivityPortsDefinitionBean).
-	 * 
-	 * Configuration beans are serialised as XML (currently by using XMLBeans)
-	 * when Taverna is saving the workflow definitions. Therefore the
-	 * configuration beans need to follow the JavaBeans style and only have
-	 * fields of 'simple' types such as Strings, integers, etc. Other beans can
-	 * be referenced as well, as long as they are part of the same plugin.
-	 */
-	
-
 	private URI ogcServiceUri;
 	private String processIdentifier;