Interface ServiceContact

  • All Superinterfaces:
    org.fusesource.restygwt.client.RestService

    @Path("/mobile/contact")
    public interface ServiceContact
    extends org.fusesource.restygwt.client.RestService
    • Method Detail

      • getContact

        @GET
        @Produces("application/json")
        @Path("contact/{userId}/")
        void getContact​(@PathParam("userId")
                        String userId,
                        org.fusesource.restygwt.client.MethodCallback<DetailUserDTO> callback)
      • getContacts

        @GET
        @Produces("application/json")
        @Path("paging/{type}/")
        void getContacts​(@PathParam("type")
                         String type,
                         @QueryParam("filter")
                         String filter,
                         @QueryParam("pageSize")
                         int pageSize,
                         @QueryParam("startIndex")
                         int startIndex,
                         org.fusesource.restygwt.client.MethodCallback<List<DetailUserDTO>> callback)
      • hasContacts

        @GET
        @Produces("application/json")
        @Path("hasContacts/")
        void hasContacts​(org.fusesource.restygwt.client.MethodCallback<ContactFilters> callback)
      • getContactsFiltered

        @GET
        @Produces("application/json")
        @Path("{type}/")
        void getContactsFiltered​(@PathParam("type")
                                 String type,
                                 @QueryParam("filter")
                                 String filter,
                                 org.fusesource.restygwt.client.MethodCallback<List<DetailUserDTO>> callback)