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

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

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

import javax.servlet.http.HttpServletRequest;

public class ParameterProcessor implements VariablesProcessor {

	public String replace(String prefix, String variable, String defValue, HttpServletRequest req) {
		String val = req.getParameter(variable);
		return val == null || val.length()==0 ?
				defValue : val;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy