Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@111754 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-02-06 08:41:20 +00:00
parent df30048e76
commit 01cd2e6137
3 changed files with 4 additions and 4 deletions

View File

@ -162,7 +162,7 @@ public interface TDGWTService extends RemoteService {
* @return
* @throws TDGWTServiceException
*/
public HashMap<ColumnDataType, ArrayList<ValueDataFormat>> getValueDataFormats()
public HashMap<ColumnDataType, ArrayList<ValueDataFormat>> getValueDataFormatsMap()
throws TDGWTServiceException;

View File

@ -107,8 +107,8 @@ public interface TDGWTServiceAsync {
PeriodDataType periodDataType,
AsyncCallback<ArrayList<PeriodDataType>> callback);
//
void getValueDataFormats(
// ValueDataFormat
void getValueDataFormatsMap(
AsyncCallback<HashMap<ColumnDataType, ArrayList<ValueDataFormat>>> callback);
void getValueDataFormatsOfColumnDataType(ColumnDataType columnDataType,

View File

@ -419,7 +419,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
* @throws TDGWTServiceException
*/
@Override
public HashMap<ColumnDataType, ArrayList<ValueDataFormat>> getValueDataFormats()
public HashMap<ColumnDataType, ArrayList<ValueDataFormat>> getValueDataFormatsMap()
throws TDGWTServiceException {
try {
HttpSession session = this.getThreadLocalRequest().getSession();