Minor updated
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@86562 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
8271cf0649
commit
b851835636
|
@ -21,16 +21,14 @@ public class SDMXExportSession implements Serializable {
|
|||
|
||||
private static final long serialVersionUID = 4176034045408445284L;
|
||||
|
||||
protected String id;
|
||||
protected TabResource tabResource;
|
||||
protected Agencies agency;
|
||||
protected Source source;
|
||||
|
||||
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
protected String id;
|
||||
protected String agencyName;
|
||||
protected String version;
|
||||
protected String registryBaseUrl;
|
||||
public TabResource getTabResource() {
|
||||
return tabResource;
|
||||
}
|
||||
|
@ -43,7 +41,6 @@ public class SDMXExportSession implements Serializable {
|
|||
public void setAgency(Agencies agency) {
|
||||
this.agency = agency;
|
||||
}
|
||||
|
||||
public Source getSource() {
|
||||
return source;
|
||||
}
|
||||
|
@ -53,16 +50,37 @@ public class SDMXExportSession implements Serializable {
|
|||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getAgencyName() {
|
||||
return agencyName;
|
||||
}
|
||||
public void setAgencyName(String agencyName) {
|
||||
this.agencyName = agencyName;
|
||||
}
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getRegistryBaseUrl() {
|
||||
return registryBaseUrl;
|
||||
}
|
||||
public void setRegistryBaseUrl(String registryBaseUrl) {
|
||||
this.registryBaseUrl = registryBaseUrl;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SDMXExportSession [id=" + id + ", tabResource=" + tabResource
|
||||
+ ", agency=" + agency + ", source=" + source + "]";
|
||||
return "SDMXExportSession [tabResource=" + tabResource + ", agency="
|
||||
+ agency + ", source=" + source + ", id=" + id
|
||||
+ ", agencyName=" + agencyName + ", version=" + version
|
||||
+ ", registryBaseUrl=" + registryBaseUrl + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue