/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.el.mvel.datatype; import org.mule.runtime.core.api.Event; import org.mule.runtime.api.metadata.DataType; import org.mule.mvel2.ast.ASTNode; /** * Resolves data type for expressions representing a reference to a invocation or session variable. */ public class PropertyExpressionDataTypeResolver extends AbstractExpressionDataTypeResolver { @Override protected DataType getDataType(Event event, ASTNode node) { if (node.isIdentifier() && event.getVariableNames().contains(node.getName())) { return event.getVariable(node.getName()).getDataType(); } else if (node.isIdentifier() && event.getSession().getPropertyNamesAsSet().contains(node.getName())) { return event.getSession().getPropertyDataType(node.getName()); } else { return null; } } }