I have an object with a method
public boolean hasPermission(String role) {
return permissions.contains(role);
}
I want to do the equivalent of:
<c:if test="${row.hasPermission(role)}">
<td></td>
</c:if>
But I cannot access the hasPermission method from within the JSP file. How can I do it?