Sha256: 0b8f3cd0db2101007790a38fd8c3b7ab2424f6884fb39fdd740a41eec8a449a6
Contents?: true
Size: 1.93 KB
Versions: 4
Compression:
Stored size: 1.93 KB
Contents
package <%= restservices_package %>; import <%= gwt_rails_package %>.RestfulDispatcherSingleton; <% if action_map.values.member? :get_all -%> import java.util.List; <% end -%> import javax.ws.rs.*; import org.fusesource.restygwt.client.*; import org.fusesource.restygwt.client.dispatcher.DefaultDispatcher; <% if name -%> import <%= models_package %>.*; <% end -%> <% if options[:singleton] -%>@Path("/<%= singular_table_name %>")<% end %> @Options(dispatcher = RestfulDispatcherSingleton.class) public interface <%= controller_class_name %>RestService extends RestService { <% actions.each do |action| case action_map[action] when :get_all -%> @GET @Path("/<%= table_name %>") @Options(dispatcher = DefaultDispatcher.class) void <%= action %>(MethodCallback<List<<%= class_name %>>> callback); // @GET @Path("/<%= table_name %>") // void <%= action %>(MethodCallback<List<<%= class_name %>>> callback, @QueryParam("limit") int limit, @QueryParam("offset") int offset); // <% when :get_single -%> @GET<% unless options[:singleton] -%> @Path("/<%= table_name %>/{id}")<% end %> void <%= action %>(<% unless options[:singleton] -%>@PathParam("id") int id, <% end -%>MethodCallback<<%= class_name %>> callback); <% when :post -%> @POST @Path("/<%= table_name %>") void <%= action %>(<%= class_name %> value, MethodCallback<<%= class_name %>> callback); <% when :put -%> @PUT<% unless options[:singleton] -%> @Path("/<%= table_name %>/{id}")<% end %> void <%= action %>(<% unless options[:singleton] -%>@PathParam("id") @Attribute("id") <% end -%><%= class_name %> value, MethodCallback<<%= class_name %>> callback); <% when :delete -%> @DELETE @Path("/<%= table_name %>/{id}") void <%= action %>(@PathParam("id") @Attribute("id") <%= class_name %> value, MethodCallback<Void> callback); <% else -%> @GET @Path("/<%= table_name %>/<%= action %>") void <%= action %>(MethodCallback<Void> callback); <% end end -%> }
Version data entries
4 entries across 4 versions & 1 rubygems