Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@94105 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-04-02 15:50:23 +00:00
parent 8880706aa4
commit 4b5666aa62
1 changed files with 62 additions and 24 deletions

View File

@ -16,26 +16,33 @@ public class TRId implements Serializable {
/** /**
* Tabular resource id * Tabular resource id
*/ */
String id; private String id;
/** /**
* Tabular resource type * Tabular resource type
*/ */
String tabularResourceType; private String tabularResourceType;
/**
/** * Last view id or table id of tabular resource
* Last view or table id of tabular resource */
*/ private String tableId;
String tableId;
/** /**
* Type of last table or view * Type of last table or view
*/ */
String tableType; private String tableType;
/**
* If tableId identifies a View then referenceTargertTableId is the
* reference to associated table
*/
private String referenceTargetTableId;
/**
* True if tableId identifies a View
*/
private boolean viewTable;
public TRId() { public TRId() {
@ -43,26 +50,43 @@ public class TRId implements Serializable {
public TRId(String id) { public TRId(String id) {
this.id = id; this.id = id;
this.tabularResourceType=null; tabularResourceType = null;
this.tableId = null; tableId = null;
this.tableType = null; tableType = null;
referenceTargetTableId = null;
viewTable = false;
} }
public TRId(String id, String tableId) { public TRId(String id, String tableId) {
this.id = id; this.id = id;
this.tabularResourceType=null; tabularResourceType = null;
this.tableId = tableId; this.tableId = tableId;
this.tableType = null; tableType = null;
referenceTargetTableId = null;
viewTable = false;
} }
public TRId(String id, String tabularResourceType, String tableId,
public TRId(String id, String tabularResourceType, String tableId, String tableType) { String tableType) {
this.id = id; this.id = id;
this.tabularResourceType=tabularResourceType; this.tabularResourceType = tabularResourceType;
this.tableId = tableId; this.tableId = tableId;
this.tableType = tableType; this.tableType = tableType;
referenceTargetTableId = null;
viewTable = false;
} }
public TRId(String id, String tabularResourceType, String tableId,
String tableType, String referenceTargetTableId, boolean viewTable) {
this.id = id;
this.tabularResourceType = tabularResourceType;
this.tableId = tableId;
this.tableType = tableType;
this.referenceTargetTableId = referenceTargetTableId;
this.viewTable = viewTable;
}
public String getId() { public String getId() {
return id; return id;
@ -96,6 +120,22 @@ public class TRId implements Serializable {
this.tableType = tableType; this.tableType = tableType;
} }
public String getReferenceTargetTableId() {
return referenceTargetTableId;
}
public void setReferenceTargetTableId(String referenceTargetTableId) {
this.referenceTargetTableId = referenceTargetTableId;
}
public boolean isViewTable() {
return viewTable;
}
public void setViewTable(boolean viewTable) {
this.viewTable = viewTable;
}
public boolean equals(TRId equals) { public boolean equals(TRId equals) {
boolean eq = false; boolean eq = false;
if (id != null && tableId != null && equals != null if (id != null && tableId != null && equals != null
@ -112,10 +152,8 @@ public class TRId implements Serializable {
public String toString() { public String toString() {
return "TRId [id=" + id + ", tabularResourceType=" return "TRId [id=" + id + ", tabularResourceType="
+ tabularResourceType + ", tableId=" + tableId + ", tableType=" + tabularResourceType + ", tableId=" + tableId + ", tableType="
+ tableType + "]"; + tableType + ", referenceTargetTableId="
+ referenceTargetTableId + ", viewTable=" + viewTable + "]";
} }
} }