> + public Blob newBlob();
> +
> + /**
> + * Put Blob object into Joyent storage.
> + */
> + @Named("PutBlob")
> + @PUT
> + @Path("{container}/{name}")
> + @ResponseParser(ParseETagHeader.class)
> + ListenableFuture<String> putBlob(
> + @PathParam("container") String container,
> + @PathParam("name") @ParamParser(BlobName.class) Blob object);
> +
> + /**
> + * Retrieve Blob from Joyent storage
> + */ @Named("GetBlob")
Move the annotation outside the javadoc :)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/188/files#r7139167