Skip to content

Commit

Permalink
Adding JAX-RS imports
Browse files Browse the repository at this point in the history
When I got rid of import javax.ws.rs.* I forgot to add these imports
  • Loading branch information
agoncal committed Sep 28, 2014
1 parent f870dfd commit 2dc083e
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ import javax.persistence.NoResultException;
import javax.persistence.OptimisticLockException;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.UriBuilder;
Expand Down

0 comments on commit 2dc083e

Please sign in to comment.