Container.FunctionCallTagHandler

public static interface Container.FunctionCallTagHandler

Handler that is provided by the application to execute a custom tag.

Public Method Summary

abstract void
execute(String tagName, Map<String, Object> parameters)

Public Methods

public abstract void execute (String tagName, Map<String, Object> parameters)

Handler is given the tag name and a map of named parameters (the map may contain String, Double, Boolean, Map, or List values).

The tagName is the same name by which the handler was registered. It's provided as a convenience to allow a single handler to be registered for multiple function call tags.