Skip to content
Snippets Groups Projects
Commit 14959b05 authored by jakubs's avatar jakubs
Browse files

SP-169 BIS-90 rename the ETL service method listDataSets to listFileDataSets

SVN: 25911
parent 77142e77
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,7 @@ public final class EncapsulatedOpenBISService implements IEncapsulatedOpenBISSer ...@@ -514,7 +514,7 @@ public final class EncapsulatedOpenBISService implements IEncapsulatedOpenBISSer
public List<SimpleDataSetInformationDTO> listDataSets() throws UserFailureException public List<SimpleDataSetInformationDTO> listDataSets() throws UserFailureException
{ {
List<SimpleDataSetInformationDTO> dataSets = List<SimpleDataSetInformationDTO> dataSets =
service.listDataSets(session.getSessionToken(), session.getDataStoreCode()); service.listFileDataSets(session.getSessionToken(), session.getDataStoreCode());
for (SimpleDataSetInformationDTO dataSet : dataSets) for (SimpleDataSetInformationDTO dataSet : dataSets)
{ {
if (dataSet.getDataSetShareId() == null) if (dataSet.getDataSetShareId() == null)
......
...@@ -287,11 +287,14 @@ public interface IEncapsulatedOpenBISService ...@@ -287,11 +287,14 @@ public interface IEncapsulatedOpenBISService
public List<DataSetShareId> listDataSetShareIds() throws UserFailureException; public List<DataSetShareId> listDataSetShareIds() throws UserFailureException;
/** /**
* Returns informations about all data sets which belong to the calling data store server. * Returns informations about all file-content data sets which belong to the calling data store
* server.
*/ */
@ManagedAuthentication @ManagedAuthentication
public List<SimpleDataSetInformationDTO> listDataSets() throws UserFailureException; public List<SimpleDataSetInformationDTO> listDataSets() throws UserFailureException;
/** @see IETLLIMSService#listDataSets(String, String, TrackingDataSetCriteria) */ /** @see IETLLIMSService#listDataSets(String, String, TrackingDataSetCriteria) */
@ManagedAuthentication @ManagedAuthentication
public List<ExternalData> listNewerDataSets(TrackingDataSetCriteria criteria) public List<ExternalData> listNewerDataSets(TrackingDataSetCriteria criteria)
......
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