From 14d3ad84533074b2429768792e2daf280419e0f3 Mon Sep 17 00:00:00 2001 From: Francesco Mangiacrapa Date: Wed, 3 Oct 2018 12:44:44 +0000 Subject: [PATCH] removed comment git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/Common/storagehub-client-wrapper@171864 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../common/storagehubwrapper/server/tohl/Workspace.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/org/gcube/common/storagehubwrapper/server/tohl/Workspace.java b/src/main/java/org/gcube/common/storagehubwrapper/server/tohl/Workspace.java index 93ee985..ef26ea8 100644 --- a/src/main/java/org/gcube/common/storagehubwrapper/server/tohl/Workspace.java +++ b/src/main/java/org/gcube/common/storagehubwrapper/server/tohl/Workspace.java @@ -44,7 +44,6 @@ public interface Workspace{ * @return the owner * @throws InternalErrorException the internal error exception */ - //OK public String getOwner() throws InternalErrorException; /** @@ -53,7 +52,6 @@ public interface Workspace{ * @return the root. * @throws InternalErrorException the internal error exception */ - //OK public WorkspaceFolder getRoot() throws InternalErrorException; @@ -63,7 +61,6 @@ public interface Workspace{ * @param id the id * @return the children */ - //OK public List getChildren(String id); @@ -74,7 +71,6 @@ public interface Workspace{ * @return the parents by id * @throws InternalErrorException the internal error exception */ - //OK public List getParentsById(String id) throws InternalErrorException; /** @@ -85,7 +81,6 @@ public interface Workspace{ * @throws ItemNotFoundException if the item has not been found. * @throws InternalErrorException the internal error exception */ - //OK public WorkspaceItem getItem(String itemId) throws ItemNotFoundException, InternalErrorException; @@ -100,7 +95,6 @@ public interface Workspace{ * @throws ItemNotFoundException if the item has not been found. * @throws InternalErrorException the internal error exception */ - //OK public WorkspaceItem getItem(String itemId, boolean withAccounting, boolean withFileDetails, boolean withMapProperties) throws ItemNotFoundException, InternalErrorException;