Skip to content
Snippets Groups Projects
Commit 157e8414 authored by jakubs's avatar jakubs
Browse files

SSDM-3013: V3 api, change listDeletions method to searchDeletions

SVN: 35569
parent 41216891
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ import ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.update.DataSetUpdate;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.Deletion;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.fetchoptions.DeletionFetchOptions;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.id.IDeletionId;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.search.DeletionSearchCriteria;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.Experiment;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.create.ExperimentCreation;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.delete.ExperimentDeletionOptions;
......@@ -180,12 +181,12 @@ public interface IApplicationServerApi extends IRpcService
public void deleteMaterials(String sessionToken, List<? extends IMaterialId> materialIds, MaterialDeletionOptions deletionOptions);
public List<Deletion> listDeletions(String sessionToken, DeletionFetchOptions fetchOptions);
public List<Deletion> searchDeletions(String sessionToken, DeletionSearchCriteria searchCriteria, DeletionFetchOptions fetchOptions);
public void revertDeletions(String sessionToken, List<? extends IDeletionId> deletionIds);
public void confirmDeletions(String sessionToken, List<? extends IDeletionId> deletionIds);
public Serializable executeService(String sessionToken, IServiceId serviceId, ExecutionOptions options);
}
/*
* Copyright 2016 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.search;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.common.search.AbstractObjectSearchCriteria;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.common.search.SearchCriteriaToStringBuilder;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.deletion.id.IDeletionId;
import ch.systemsx.cisd.base.annotation.JsonObject;
/**
* @author Jakub Straszewski
*/
@JsonObject("dto.deletion.search.DeletionSearchCriteria")
public class DeletionSearchCriteria extends AbstractObjectSearchCriteria<IDeletionId>
{
private static final long serialVersionUID = 1L;
@Override
protected SearchCriteriaToStringBuilder createBuilder()
{
SearchCriteriaToStringBuilder builder = super.createBuilder();
builder.setName("DELETION");
return builder;
}
}
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