Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java
index 2bdeb515ab0..024d3bfa392 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/command/TestEnvironmentCommand.java
@@ -22,6 +22,10 @@ import org.eclipse.osee.ote.core.environment.interfaces.IServiceCommand;
* @author Andrew M. Finkbeiner
*/
public abstract class TestEnvironmentCommand implements Serializable, IServiceCommand {
+ /**
+ *
+ */
+ private static final long serialVersionUID = -921447917279635626L;
private final UserTestSessionKey key;
private final CommandDescription commandDescription;
@@ -45,7 +49,7 @@ public abstract class TestEnvironmentCommand implements Serializable, IServiceCo
public abstract void execute(TestEnvironment environment) throws TestException;
/**
- *
+ *
*/
public CommandDescription getDescription() {
return commandDescription;

Back to the top