if ( taskData.getDocumentAccessType() == AccessType.Inline ) {
content = em.find( Content.class,
taskData.getDocumentContentId() );
}
ExpressionCompiler compiler = new ExpressionCompiler( new String( content.getContent() ) );
Serializable expr = compiler.compile();
Object object = MVEL.executeExpression( expr );
Map<String, Object> vars = new HashMap<String, Object>();
vars.put( docVar, object );
// for now will have to assume the recipient is a User, we need to figure out if Groups have an alias