> +
> + @Named("servers:snapshot:delete")
> + @DELETE
> + @Path("/{serverId}/snapshots/{snapshotId}")
> + @ResponseParser(ServerApi.ServerParser.class)
> + @MapBinder(BindToJsonPayload.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Server deleteSnapshot(@PathParam("serverId") String serverId,
> @PathParam("snapshotId") String snapshotId);
> +
> + @Named("servers:clone:create")
> + @POST
> + @Path("/{serverId}/clone")
> + @ResponseParser(ServerApi.ServerParser.class)
> + Server clone(@PathParam("serverId") String serverId,
> @BinderParam(BindToJsonPayload.class) Server.Clone clone);
> +
> + static final class ServerListParser extends ParseJson<List<Server>> {
I get this error when removing the response parser and run the tests
`You must specify a ResponseParser annotation`
any other annotation i can use that would do the job
---
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#r68856534