Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.db.test/src/org/eclipse/osee/orcs/db/mocks/MockExecutorAdmin.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.db.test/src/org/eclipse/osee/orcs/db/mocks/MockExecutorAdmin.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db.test/src/org/eclipse/osee/orcs/db/mocks/MockExecutorAdmin.java b/plugins/org.eclipse.osee.orcs.db.test/src/org/eclipse/osee/orcs/db/mocks/MockExecutorAdmin.java
deleted file mode 100644
index 8db3267a70d..00000000000
--- a/plugins/org.eclipse.osee.orcs.db.test/src/org/eclipse/osee/orcs/db/mocks/MockExecutorAdmin.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.orcs.db.mocks;
-
-import java.util.concurrent.Callable;
-import java.util.concurrent.Future;
-import org.eclipse.osee.executor.admin.ExecutionCallback;
-import org.eclipse.osee.executor.admin.ExecutorAdmin;
-
-/**
- * @author Roberto E. Escobar
- */
-public class MockExecutorAdmin implements ExecutorAdmin {
-
- @Override
- public <T> Future<T> schedule(Callable<T> callable, ExecutionCallback<T> callback) throws Exception {
- return null;
- }
-
- @Override
- public <T> Future<T> schedule(String id, Callable<T> callable, ExecutionCallback<T> callback) throws Exception {
- return null;
- }
-
- @Override
- public <T> Future<T> schedule(Callable<T> callable) throws Exception {
- return null;
- }
-
- @Override
- public <T> Future<T> schedule(String id, Callable<T> callable) throws Exception {
- return null;
- }
-
- @Override
- public int cancelTasks(String id) throws Exception {
- return 0;
- }
-
-}

Back to the top