Interface ProfileResource


@Path("profiles") public interface ProfileResource
Author:
Endi S. Dewata
  • Method Details

    • findProfiles

      @GET javax.ws.rs.core.Response findProfiles(@QueryParam("filter") String filter, @QueryParam("start") Integer start, @QueryParam("size") Integer size)
    • getProfile

      @GET @Path("{profileID}") javax.ws.rs.core.Response getProfile(@PathParam("profileID") String profileID)
    • addProfile

      @POST javax.ws.rs.core.Response addProfile(ProfileData profileData)
    • updateProfile

      @Path("{profileID}") javax.ws.rs.core.Response updateProfile(@PathParam("profileID") String profileID, ProfileData profileData)
    • changeStatus

      @POST @Path("{profileID}") javax.ws.rs.core.Response changeStatus(@PathParam("profileID") String profileID, @QueryParam("action") String action)
    • removeProfile

      @DELETE @Path("{profileID}") javax.ws.rs.core.Response removeProfile(@PathParam("profileID") String profileID)