public void updateObjectMeta(S3Object obj) throws IOException { awsAuthConnection.copy(name, obj.getKey(), name, obj.getKey(), obj.getMeta(), null); }
public void saveObject(S3Object obj) throws IOException { obj.setBucket(this); com.amazon.s3.S3Object object = new com.amazon.s3.S3Object(obj.getData(), obj.getMeta()); Response response = awsAuthConnection.put(name, obj.getKey(), object, null); response.assertSuccess(); }