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

net.anotheria.anosite.content.variables.VariablesProcessor Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.content.variables;

import jakarta.servlet.http.HttpServletRequest;

/**
 * Text replace processor interface.
 * 
 * @author denis
 */
public interface VariablesProcessor {
	/**
	 * Replace method.
	 * @param prefix  processor prefix
	 * @param variable variable to replace
	 * @param defValue default value
	 * @param req request
	 * @return replaced text
	 */
	String replace(String prefix, String variable, String defValue, HttpServletRequest req);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy