> + @PUT
> + @Path("/{sharedStorageId}")
> + SharedStorage update(@PathParam("sharedStorageId") String
> sharedStorageId, @BinderParam(BindToJsonPayload.class)
> SharedStorage.UpdateSharedStorage sharedStorage);
> +
> + @Named("sharedstorages:delete")
> + @DELETE
> + @Path("/{sharedStorageId}")
> + @MapBinder(BindToJsonPayload.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + SharedStorage delete(@PathParam("sharedStorageId") String
> sharedStorageId);
> +
> + @Named("sharedstorages:servers:list")
> + @GET
> + @Path("/{sharedStorageId}/servers")
> + @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
> + List<Server> getServers(@PathParam("sharedStorageId") String
> sharedStorageId);
Rename to `listServers` to follow the current naming convention
---
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/304/files/b4ecd2bdfe26ff68d6dd6c9e03a4de2e3eba3fe2#r72952900