/* * 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.api.el; /** * Interface used to implement extensions to be used with a Mule Expression Language implementation. Imports, variables, aliases * and functions can be added to the Expression Language context as required via the methods available in the * {@link ExpressionLanguageContext} instance provided. Note: The context provided, is a static context with no message context * available. In order to work with per-evaluation context including the message (including it's payload and properties) and * flow/session variables then you should implement {@link ExpressionLanguageFunction}'s and make these available in the context. * * @since 3.3 */ public interface ExpressionLanguageExtension { void configureContext(ExpressionLanguageContext context); }