Interface RenderCondition
-
- All Known Implementing Classes:
AbstractCompositeRenderCondition
,AndRenderCondition
,CapabilityRenderCondition
,NotRenderCondition
,OrRenderCondition
,PrivilegeRenderCondition
,SimpleRenderCondition
public interface RenderCondition
The condition if the component should be rendered or not.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
check()
Returnstrue
if the component should be rendered;false
otherwise.
-
-
-
Method Detail
-
check
boolean check() throws ServletException, java.io.IOException
Returnstrue
if the component should be rendered;false
otherwise.- Returns:
true
if the component should be rendered,false
otherwise- Throws:
ServletException
- in case a servlet error occursjava.io.IOException
- in case an IO error occurs
-
-