* Stores a simple text file
*
* @throws Exception
*/
public void testStorage() throws Exception {
AttachmentMetadata metadata = new AttachmentMetadata();
metadata.setMimeType("text/plain");
String string = "hello.txt";
metadata.setFilename(string);
String url = _service.add(_credentials, metadata, "Hello world!".getBytes("UTF-8"));
System.out.println("URL: " + url);
_service.delete(_credentials, url);
}