1 package org.collectionspace.hello.client;
3 import javax.ws.rs.Consumes;
4 import javax.ws.rs.GET;
5 import javax.ws.rs.POST;
6 import javax.ws.rs.Path;
7 import javax.ws.rs.PathParam;
8 import javax.ws.rs.Produces;
9 import javax.ws.rs.core.Response;
11 import org.collectionspace.hello.DomainIdentifier;
12 import org.jboss.resteasy.client.ClientResponse;
15 * @version $Revision:$
17 @Path("/domainidentifiers/")
18 @Produces({"application/xml"})
19 @Consumes({"application/xml"})
20 public interface DomainIdentifierProxy {
28 ClientResponse<DomainIdentifier> getIdentifier(@PathParam("id") String id);
31 ClientResponse<Response> createIdentifier(DomainIdentifier so);