I am currently searching for a possibility to use a void method mit parameters in JSTL.
The Java class is a Sling Model and worked into the JSTL via adaptTo. Is there any way to use other methods than get or set in JSTL?
Rough Code (I don't think it really is important, what the function does?)
public void someMethod(final Parameter parameter1, final Parameter parameter2) {
does.some.stuff();
}
This may be a very stupid and easy question but I just find Bean stuff. Please help me out?
Thank You!