private InputStream inputStreamFrom(final FileContent content) throws FileSystemException { return content.getInputStream(); }
private ZipEntry entryFor(final String name, final FileContent content) throws FileSystemException { final ZipEntry entry = new ZipEntry(name); entry.setTime(content.getLastModifiedTime()); return entry; }