> + @Path("/{id}")
> + @SelectJson("network")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + @Nullable
> + Network get(@PathParam("id") String id);
> +
> + /**
> + * Create a new network with the specified type
> + *
> + * @param network Describes the network to be created.
> + * @return a reference of the newly-created network
> + */
> + @Named("network:create")
> + @POST
> + @SelectJson("network")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Same as above, can this POST return a 404?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r14011038