// The document exposure scan task scans the document for
// non-JavaScript-based attacks.
// Since the document only need to be read by this task, it can run in a
// separate thread.
DocumentExposureScanTask exposureScanTask = new DocumentExposureScanTask(
this, documentAdapter.getDocument());
Thread documentExposureScanThread = new Thread(exposureScanTask);
documentExposureScanThread.start();
analysisresult.classification = Classification.benign;