Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@98819 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
c209237ed0
commit
20d9d76c9d
|
@ -17,6 +17,7 @@ public class UnionSession implements Serializable {
|
|||
private static final long serialVersionUID = -1896235499708614266L;
|
||||
|
||||
protected TRId trId;
|
||||
protected TabResource currentTabularResource;
|
||||
protected TabResource unionTabularResource;
|
||||
protected ArrayList<UnionColumnsMapping> columnsMatch;
|
||||
|
||||
|
@ -24,12 +25,14 @@ public class UnionSession implements Serializable {
|
|||
|
||||
}
|
||||
|
||||
public UnionSession(TRId trId, TabResource unionTabularResource,
|
||||
public UnionSession(TRId trId, TabResource currentTabularResource,
|
||||
TabResource unionTabularResource,
|
||||
ArrayList<UnionColumnsMapping> columnsMatch) {
|
||||
this.trId = trId;
|
||||
this.unionTabularResource=unionTabularResource;
|
||||
this.columnsMatch=columnsMatch;
|
||||
|
||||
this.currentTabularResource=currentTabularResource;
|
||||
this.unionTabularResource = unionTabularResource;
|
||||
this.columnsMatch = columnsMatch;
|
||||
|
||||
}
|
||||
|
||||
public TRId getTrId() {
|
||||
|
@ -56,11 +59,21 @@ public class UnionSession implements Serializable {
|
|||
this.columnsMatch = columnsMatch;
|
||||
}
|
||||
|
||||
public TabResource getCurrentTabularResource() {
|
||||
return currentTabularResource;
|
||||
}
|
||||
|
||||
public void setCurrentTabularResource(TabResource currentTabularResource) {
|
||||
this.currentTabularResource = currentTabularResource;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "UnionSession [trId=" + trId + ", unionTabularResource="
|
||||
return "UnionSession [trId=" + trId + ", currentTabularResource="
|
||||
+ currentTabularResource + ", unionTabularResource="
|
||||
+ unionTabularResource + ", columnsMatch=" + columnsMatch + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue