Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@97535 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-06-19 10:38:39 +00:00
parent a68b172811
commit 9e5e893f4e
3 changed files with 2 additions and 53 deletions

View File

@ -158,7 +158,6 @@ import org.gcube.portlets.user.td.gwtservice.shared.tr.ColumnData;
import org.gcube.portlets.user.td.gwtservice.shared.tr.ColumnViewData;
import org.gcube.portlets.user.td.gwtservice.shared.tr.DefNewColumn;
import org.gcube.portlets.user.td.gwtservice.shared.tr.RefColumn;
import org.gcube.portlets.user.td.gwtservice.shared.tr.RelationshipData;
import org.gcube.portlets.user.td.gwtservice.shared.tr.TabResource;
import org.gcube.portlets.user.td.gwtservice.shared.tr.TableData;
import org.gcube.portlets.user.td.gwtservice.shared.tr.batch.Occurrences;
@ -215,6 +214,7 @@ import org.gcube.portlets.user.td.gwtservice.shared.tr.type.Dataset;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
import org.gcube.portlets.user.td.widgetcommonevent.shared.tr.column.ColumnDataType;
import org.gcube.portlets.user.td.widgetcommonevent.shared.tr.column.ColumnTypeCode;
import org.gcube.portlets.user.td.widgetcommonevent.shared.tr.column.RelationshipData;
import org.gcube.resources.discovery.client.api.DiscoveryClient;
import org.gcube.resources.discovery.client.queries.api.SimpleQuery;
import org.slf4j.Logger;

View File

@ -4,6 +4,7 @@ import java.io.Serializable;
import java.util.ArrayList;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
import org.gcube.portlets.user.td.widgetcommonevent.shared.tr.column.RelationshipData;
/**
*

View File

@ -1,52 +0,0 @@
package org.gcube.portlets.user.td.gwtservice.shared.tr;
import java.io.Serializable;
/**
* Implements the realtionship for Dimension and TimeDimension columns
*
* @author "Giancarlo Panichi"
*
*/
public class RelationshipData implements Serializable {
private static final long serialVersionUID = 897893891284145975L;
Long targetTableId;
String targetColumnId;
public RelationshipData() {
}
public RelationshipData(Long targetTableId, String targetColumnId) {
this.targetColumnId=targetColumnId;
this.targetTableId=targetTableId;
}
public String getTargetColumnId() {
return targetColumnId;
}
public void setTargetColumnId(String targetColumnId) {
this.targetColumnId = targetColumnId;
}
public Long getTargetTableId() {
return targetTableId;
}
public void setTargetTableId(Long targetTableId) {
this.targetTableId = targetTableId;
}
@Override
public String toString() {
return "RelationshipData [targetTableId=" + targetTableId
+ ", targetColumnId=" + targetColumnId + "]";
}
}