trevorflanagan commented on this pull request.
> + @Fallback(NullOnNotFoundOr404.class)
+ FirewallRuleTarget.PortList getPortList(@PathParam("id") String portListId);
+
+ @Named("network:deletePortList")
+ @POST
+ @Path("/deletePortList")
+ @Produces(MediaType.APPLICATION_JSON)
+ @MapBinder(BindToJsonPayload.class)
+ @Fallback(NullOnNotFoundOr404.class)
+ Response deletePortList(@PayloadParam("id") String portListId);
+
+ @Singleton
+ public class ParseFirewallRules extends ParseJson<FirewallRules> {
+
+ @Inject
+ public ParseFirewallRules(Json json) {
Done
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/389#discussion_r123012271