> + @PATCH
> + @Path("/{nicId}")
> + @MapBinder(UpdateNicRequestBinder.class)
> + @ResponseParser(NicApi.NicParser.class)
> + @Produces("application/vnd.profitbricks.partial-properties+json")
> + Nic updateNic(@PayloadParam("nic") Nic.Request.UpdatePayload payload);
> +
> + @Named("nic:delete")
> + @DELETE
> + @Path("/{nicId}")
> + @Fallback(Fallbacks.VoidOnNotFoundOr404.class)
> + void deleteNic(@PathParam("dataCenterId") String dataCenterId,
> @PathParam("serverId") String serverId, @PathParam("nicId") String nicId);
> +
> + static final class NicParser extends ParseJson<Nic> {
> +
> + final ParseId parseService;
Make this private.
---
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/249/files/a17eac2160481358b8735aab30ecf12d672b341b#r56995629