
org.spincast.plugins.pebble.ISpincastPebbleTemplatingEngineConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-plugins-pebble Show documentation
Show all versions of spincast-plugins-pebble Show documentation
The default Spincast Pebble plugin
package org.spincast.plugins.pebble;
import com.google.inject.ImplementedBy;
import com.mitchellbosecke.pebble.extension.Extension;
/**
* Configurations for the Pebble templating engine plugin. jjj123
*
* We use "@ImplementedBy" to specify the default configurations
* to use if none is specified in a Guice module.
*/
@ImplementedBy(SpincastPebbleTemplatingEngineConfigDefault.class)
public interface ISpincastPebbleTemplatingEngineConfig {
/**
* Pebble extension to register: allows you to add custom
* filters, functions, etc.
*/
public Extension getExtension();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy