public Object getValue()

in activiti/activiti-config/src/main/java/org/apache/servicemix/activiti/config/CamelAwareELResolver.java [40:49]


    public Object getValue(org.activiti.engine.impl.javax.el.ELContext context, Object base, Object property) {
        if (base == null && property != null && property instanceof String) {
            String key = (String) property;
            if (CAMEL_PROPERTY_NAME.endsWith(key)) {
                context.setPropertyResolved(true);
                return camelBehaviour;
            }
        }
        return super.getValue(context, base, property);
    }