*
*/
public String indexAttachment(final File file, final Long attachmentId){
long start = System.currentTimeMillis();
try {
AttachmentIndex attachmentBean = IndexerFile.createAttachmentDocument(file, attachmentId);
IndexerFile.addToIndex(attachmentBean, this.indexWriter);
} catch (IOException e) {
// TODO Auto-generated catch block
log.error(e);
}