googleDocsServiceFactory.getDocsService(getRequest(), getResponse());
InputStream content = googleDocsService.downloadFile(uri);
try {
JCRNodeWrapper parent = node.getParent();
session.checkout(parent);
parent.uploadFile(node.getName(), content, node.getFileContent().getContentType());
session.save();
} finally {
IOUtils.closeQuietly(content);
String docId = null;
if (uri.contains("docId=")) {