Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@98724 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
f6da612b29
commit
130c25dd8a
|
@ -493,8 +493,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns ArrayList<ColumnData> other than IdColumnType and
|
* Returns ArrayList<ColumnData> other than IdColumnType,
|
||||||
* ValidationColumnType
|
* ValidationColumnType and ViewColumn
|
||||||
*
|
*
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
@ -522,8 +522,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
|
|
||||||
List<Column> cols = table.getColumns();
|
List<Column> cols = table.getColumns();
|
||||||
int i = 0;
|
int i = 0;
|
||||||
// || c.getColumnType() instanceof DimensionColumnType
|
|
||||||
// || c.getColumnType() instanceof TimeDimensionColumnType
|
|
||||||
for (Column c : cols) {
|
for (Column c : cols) {
|
||||||
if (c.getColumnType() instanceof IdColumnType
|
if (c.getColumnType() instanceof IdColumnType
|
||||||
|| c.getColumnType() instanceof ValidationColumnType) {
|
|| c.getColumnType() instanceof ValidationColumnType) {
|
||||||
|
@ -618,7 +617,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns ArrayList<ColumnData> other than IdColumnType,
|
* Returns ArrayList<ColumnData> other than IdColumnType,
|
||||||
* ValidationColumnType, DimensionColumnType and TimeDimensionColumnType
|
* ValidationColumnType and ViewColumn
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
@ -4719,6 +4718,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns only CodeColumnType, CodeNameColumnType,
|
||||||
|
* CodeDescriptionColumnType and AnnotationColumnType
|
||||||
*
|
*
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
@ -6805,6 +6806,11 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ColumnData getConnection(RefColumn refColumn)
|
public ColumnData getConnection(RefColumn refColumn)
|
||||||
throws TDGWTServiceException {
|
throws TDGWTServiceException {
|
||||||
|
|
Loading…
Reference in New Issue