Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java')
-rw-r--r--plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java b/plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java
index 1f728fcda3f..3e4ff01050e 100644
--- a/plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java
+++ b/plugins/org.eclipse.osee.ote.connection.service/src/org/eclipse/osee/connection/service/IServiceConnector.java
@@ -40,7 +40,6 @@ public interface IServiceConnector {
/**
* makes the callback accessible by this connector's service
*
- * @param callback
* @throws Exception
*/
Object export(Object callback) throws ExportException;
@@ -50,7 +49,6 @@ public interface IServiceConnector {
/**
* finds the matching exported representation of supplied object
*
- * @param callback
* @throws Exception
*/
Object findExport(Object callback);
@@ -64,7 +62,6 @@ public interface IServiceConnector {
/**
* uploads a file to a service and creates an {@link URI} that the service can access.
*
- * @param file
* @throws Exception
*/
URI upload(File file) throws Exception;

Back to the top