Skip to content
Snippets Groups Projects
Commit 8775a8cb authored by anttil's avatar anttil
Browse files

SSDM-1813: Return all the files in a dataset instead of only the ones in the...

SSDM-1813: Return all the files in a dataset instead of only the ones in the root folder. Improve tests.

SVN: 34287
parent 3036127e
No related branches found
No related tags found
No related merge requests found
......@@ -18,12 +18,12 @@ package ch.ethz.sis.openbis.generic.dss.api.v3.dto.entity.datasetfile;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import ch.ethz.sis.openbis.generic.shared.api.v3.dto.id.dataset.DataSetPermId;
import ch.systemsx.cisd.base.annotation.JsonObject;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author Jakub Straszewski
*/
......@@ -59,4 +59,10 @@ public class DataSetFile implements Serializable
{
this.fileName = fileName;
}
@Override
public String toString()
{
return "DataSetFile: " + fileName + ", " + dataSetPermId;
}
}
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