* @see com.emc.atmos.api.AtmosApi#createObject(com.emc.atmos.api.ObjectIdentifier, java.lang.Object, java.lang.String)
*/
@Override
public ObjectId createObject(ObjectIdentifier identifier, Object content,
String contentType) {
CreateObjectRequest req = new CreateObjectRequest();
req.setIdentifier(identifier);
req.setContent(content);
req.setContentType(contentType);
CreateObjectResponse res = createObject(req);
return res.getObjectId();
}