Example usage for org.springframework.expression MethodExecutor interface-usage

List of usage examples for org.springframework.expression MethodExecutor interface-usage

Introduction

In this page you can find the example usage for org.springframework.expression MethodExecutor interface-usage.

Usage

From source file guru.qas.martini.tag.AbstractIdentifierExecutor.java

@SuppressWarnings("WeakerAccess")
public abstract class AbstractIdentifierExecutor implements MethodExecutor {

    @Nonnull
    @Override
    public TypedValue execute(@Nonnull EvaluationContext context, @Nonnull Object target,

From source file guru.qas.martini.tag.CategoryExecutor.java

@SuppressWarnings("WeakerAccess")
class CategoryExecutor implements MethodExecutor {

    protected final Categories categories;

    CategoryExecutor(Categories categories) {

From source file guru.qas.martini.tag.TagExecutor.java

@SuppressWarnings("WeakerAccess")
class TagExecutor implements MethodExecutor {

    protected final String tagName;

    public TagExecutor(String tagName) {

From source file guru.qas.martini.tag.ResourceExecutor.java

@SuppressWarnings("WeakerAccess")
public class ResourceExecutor implements MethodExecutor {

    private static final Logger LOGGER = LoggerFactory.getLogger(ResourceExecutor.class);

    protected final ApplicationContext applicationContext;