> + @MapBinder(BindToJsonPayload.class)
> + @ResponseParser(ServerApi.ServerParser.class)
> + Server addIp(@PathParam("serverId") String serverId,
> @PayloadParam("type") Types.IPType type);
> +
> + @Named("servers:ip:get")
> + @GET
> + @Path("/{serverId}/ips/{ipId}")
> + @ResponseParser(ServerApi.ServerIpParser.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + ServerIp getIp(@PathParam("serverId") String serverId,
> @PathParam("ipId") String ipId);
> +
> + @Named("server:ip:delete")
> + @DELETE
> + @Path("/{serverId}/ips/{ipId}")
> + @ResponseParser(ServerApi.ServerParser.class)
> + @MapBinder(BindToJsonPayload.class)
Remove binder.
---
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/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68669655