Minor updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@86350 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-11-29 10:43:31 +00:00
parent e1a265e9c0
commit 161c2fedd6
2 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ public interface TDGWTService extends RemoteService {
* @return
* @throws TDGWTServiceException
*/
public List<TabResource> getTabularResources() throws TDGWTServiceException;
public ArrayList<TabResource> getTabularResources() throws TDGWTServiceException;
/**
* Set open session for return all tabular resource of a user

View File

@ -48,13 +48,13 @@ public interface TDGWTServiceAsync {
void setTabResource(TabResource tabResource, AsyncCallback<Void> callback);
void getTabularResources(AsyncCallback<List<TabResource>> callback);
void getTabularResources(AsyncCallback<ArrayList<TabResource>> callback);
void getLastTable(TRId trId, AsyncCallback<TableData> callback);
void getTableMetadata(TRId trId, AsyncCallback<ArrayList<TRMetadata>> callback);
void getColumns(AsyncCallback<List<ColumnData>> callback);
void getColumns(AsyncCallback<ArrayList<ColumnData>> callback);
//Open
void setTDOpenSession(TDOpenSession tdOpenSession, AsyncCallback<Void> callback);