All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.rsqn.cacheservice.support.TemplatedParserContext Maven / Gradle / Ivy

package tech.rsqn.cacheservice.support;

import org.springframework.expression.ParserContext;

public class TemplatedParserContext implements ParserContext {
    public String getExpressionPrefix() {
        return "${";
    }

    public String getExpressionSuffix() {
        return "}";
    }

    public boolean isTemplate() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy