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:
parent
e1a265e9c0
commit
161c2fedd6
|
@ -106,7 +106,7 @@ public interface TDGWTService extends RemoteService {
|
||||||
* @return
|
* @return
|
||||||
* @throws TDGWTServiceException
|
* @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
|
* Set open session for return all tabular resource of a user
|
||||||
|
|
|
@ -48,13 +48,13 @@ public interface TDGWTServiceAsync {
|
||||||
|
|
||||||
void setTabResource(TabResource tabResource, AsyncCallback<Void> callback);
|
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 getLastTable(TRId trId, AsyncCallback<TableData> callback);
|
||||||
|
|
||||||
void getTableMetadata(TRId trId, AsyncCallback<ArrayList<TRMetadata>> callback);
|
void getTableMetadata(TRId trId, AsyncCallback<ArrayList<TRMetadata>> callback);
|
||||||
|
|
||||||
void getColumns(AsyncCallback<List<ColumnData>> callback);
|
void getColumns(AsyncCallback<ArrayList<ColumnData>> callback);
|
||||||
|
|
||||||
//Open
|
//Open
|
||||||
void setTDOpenSession(TDOpenSession tdOpenSession, AsyncCallback<Void> callback);
|
void setTDOpenSession(TDOpenSession tdOpenSession, AsyncCallback<Void> callback);
|
||||||
|
|
Loading…
Reference in New Issue