I have an object with a method
public boolean hasPermission(String role) { return permissions.contains(role); }
I want to do the equ
The latest version of EL (in tomcat 7 for ex.) supports this (${obj.method(arg)})
${obj.method(arg)}
If you have an older version you have two options: