From 24ffdbc91426da4fcd32874b331a7cfe22b1b115 Mon Sep 17 00:00:00 2001 From: cramakri <cramakri> Date: Wed, 2 Feb 2011 12:51:32 +0000 Subject: [PATCH] LMS-1988 Store the data set type directly in DataSetInformation. SVN: 19708 --- .../etlserver/registrator/DataSetRegistrationDetails.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/DataSetRegistrationDetails.java b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/DataSetRegistrationDetails.java index 8533887613f..356472902eb 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/DataSetRegistrationDetails.java +++ b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/DataSetRegistrationDetails.java @@ -35,8 +35,6 @@ public class DataSetRegistrationDetails<T extends DataSetInformation> implements private String processorType; - private DataSetType dataSetType; - private LocatorType locatorType; private T dataSetInformation; @@ -65,7 +63,7 @@ public class DataSetRegistrationDetails<T extends DataSetInformation> implements public DataSetType getDataSetType(File incomingDataSetPath) { - return dataSetType; + return getDataSetType(); } public LocatorType getLocatorType(File incomingDataSetPath) @@ -111,12 +109,12 @@ public class DataSetRegistrationDetails<T extends DataSetInformation> implements public DataSetType getDataSetType() { - return dataSetType; + return dataSetInformation.getDataSetType(); } public void setDataSetType(DataSetType dataSetType) { - this.dataSetType = dataSetType; + dataSetInformation.setDataSetType(dataSetType); } public LocatorType getLocatorType() -- GitLab