alibazlamit commented on this pull request.
> + @GET
+ @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
+ List<Vpn> getList(GenericQueryOptions options);
+
+ @Named("vpn:get")
+ @GET
+ @Path("/{vpnId}")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ Vpn get(@PathParam("vpnId") String vpnId);
+
+ @Named("vpn:configurations:get")
+ @GET
+ @Path("/{vpnId}/configuration_file")
+ @SelectJson("config_zip_file")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ String getConfiguration(@PathParam("vpnId") String vpnId);
@nacx I think its an unnecessary step,users will have to still convert the
ZipInputStream to a file and choose a path,i would leave the whole to who ever
wants to use that method,on the other hand if you think its must be there ill
implement that.
--
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/319