> +   VirtualNetwork 
> createOrUpdateVirtualNetwork(@PathParam("virtualnetworkname") String 
> virtualnetworkname,
> +                                               @PayloadParam("location") 
> String location,
> +                                               
> @PayloadParam("properties")VirtualNetwork.VirtualNetworkProperties 
> properties);
> +
> +   @Named("virtualnetwork:get")
> +   @Path("/{virtualnetworkname}")
> +   @GET
> +   @Fallback(NullOnNotFoundOr404.class)
> +   VirtualNetwork getVirtualNetwork(@PathParam("virtualnetworkname") String 
> virtualnetworkname);
> +
> +   @Named("virtualnetwork:delete")
> +   @Path("/{virtualnetworkname}")
> +   @DELETE
> +   @ResponseParser(FalseOn204.class)
> +   boolean deleteVirtualNetwork(@PathParam("virtualnetworkname") String 
> virtualnetworkname);
> +}

Also remove the `VirtualNetwork` suffix from the method names.

---
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/262/files/1801c68f227e1f245a30c6fa6ff044e7e2634460#r60746265

Reply via email to