Skip to content

Instantly share code, notes, and snippets.

@stibi
Created July 22, 2013 09:52
Show Gist options
  • Save stibi/6052697 to your computer and use it in GitHub Desktop.
Save stibi/6052697 to your computer and use it in GitHub Desktop.
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
/**
* @author stibomar
* @since 19/07/13 13:42
*/
@Path("/testing/")
public class JaxrsTestingServiceResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/jmsWithoutExchangeTransfer/")
public Response jmsWithoutTransferedExchange() {
return null;
}
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/jmsWithExchangeTransfer/")
public Response jmsWithTransferedExchange() {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment