Hi!
I need to check if one string equals to the other one.
<h:outputText value="Failure" rendered="#{jobsImpl.result == 'Failure'}"></h:outputText>
i understand that using == for string is incorrect,
how can i use equals? i tried to use it like this:
<h:outputText value="Failure" rendered="#{jobsImpl.result.equals('Failure')}"></h:outputText>
but got an error.