Skip to content
Snippets Groups Projects
Commit c4e2f13e authored by tpylak's avatar tpylak
Browse files

minor: field name refactoring

SVN: 19905
parent ed42bb13
No related branches found
No related tags found
No related merge requests found
...@@ -50,10 +50,10 @@ public class DataSetInformation implements Serializable ...@@ -50,10 +50,10 @@ public class DataSetInformation implements Serializable
private String sampleCode; private String sampleCode;
// top sample properties // top sample properties
private IEntityProperty[] properties = IEntityProperty.EMPTY_ARRAY; private IEntityProperty[] topSampleProperties = IEntityProperty.EMPTY_ARRAY;
private DataSetType dataSetType; private DataSetType dataSetType;
private String shareId; private String shareId;
/** /**
...@@ -90,7 +90,7 @@ public class DataSetInformation implements Serializable ...@@ -90,7 +90,7 @@ public class DataSetInformation implements Serializable
* Email of uploading user. * Email of uploading user.
*/ */
private String uploadingUserEmailOrNull; private String uploadingUserEmailOrNull;
private String uploadingUserIdOrNull; private String uploadingUserIdOrNull;
/** This constructor is for serialization. */ /** This constructor is for serialization. */
...@@ -145,12 +145,12 @@ public class DataSetInformation implements Serializable ...@@ -145,12 +145,12 @@ public class DataSetInformation implements Serializable
*/ */
public final IEntityProperty[] getProperties() public final IEntityProperty[] getProperties()
{ {
return properties == null ? new IEntityProperty[0] : properties; return topSampleProperties == null ? new IEntityProperty[0] : topSampleProperties;
} }
public final void setProperties(final IEntityProperty[] properties) public final void setProperties(final IEntityProperty[] properties)
{ {
this.properties = properties; this.topSampleProperties = properties;
} }
public DataSetType getDataSetType() public DataSetType getDataSetType()
...@@ -332,8 +332,8 @@ public class DataSetInformation implements Serializable ...@@ -332,8 +332,8 @@ public class DataSetInformation implements Serializable
sampleCode); sampleCode);
} else } else
{ {
return String.format("CODE('%s') SAMPLE_CODE('%s') EXPERIMENT('%s')", extractableData return String.format("CODE('%s') SAMPLE_CODE('%s') EXPERIMENT('%s')",
.getCode(), sampleCode, experimentIdentifier.describe()); extractableData.getCode(), sampleCode, experimentIdentifier.describe());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment