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);
OK ill add it
--
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