this.file = file;
}
@Override
public IReadOnlyAccess getReadOnlyAccess() throws IOException {
IReadOnlyAccess input = null;
try {
RandomAccessContent rac = file.getContent().getRandomAccessContent(
RandomAccessMode.READ);
input = new RandomAccessContentAccess(rac);
} catch (Exception e) {