I have two REST classes for a simple web service (Jersey and GlassFish) that involves user resources - one to operate on all users (e.g., a factory for @POSTing) and another on individual users (e.g., @GET, @PUT, @DELETE). They are at: @Stateless @Path("users") public class AllUsersResource {...} @Stateless @Path("user") public class OneUserResource {...} respectively. When POSTing to AllUsersReso