7778798081828384
public void put(byte[] data) throws ContentRepositoryException { try { FileOutputStream fos = new FileOutputStream(getFile()); fos.write(data); } catch (IOException ioe) { throw new ContentRepositoryException(ioe); } }