1 package org.collectionspace.services.client;
\r
3 import javax.ws.rs.GET;
\r
4 import javax.ws.rs.Produces;
\r
5 import javax.ws.rs.QueryParam;
\r
7 import org.collectionspace.services.client.workflow.WorkflowClient;
\r
8 import org.collectionspace.services.jaxb.AbstractCommonList;
\r
9 import org.jboss.resteasy.client.ClientResponse;
\r
11 public interface CollectionSpaceCommonListPoxProxy extends CollectionSpacePoxProxy<AbstractCommonList> {
\r
13 ClientResponse<AbstractCommonList> readList();
\r
17 @Produces({"application/xml"})
\r
18 ClientResponse<AbstractCommonList> readIncludeDeleted(
\r
19 @QueryParam(WorkflowClient.WORKFLOW_QUERY_NONDELETED) String includeDeleted);
\r
23 @Produces({"application/xml"})
\r
24 ClientResponse<AbstractCommonList> keywordSearchIncludeDeleted(
\r
25 @QueryParam(IQueryManager.SEARCH_TYPE_KEYWORDS_KW) String keywords,
\r
26 @QueryParam(WorkflowClient.WORKFLOW_QUERY_NONDELETED) String includeDeleted);
\r