I am customizing the Struts2 <s:property>
tag.
I've created a new attribute, encrypt
; when it's set to true
, it forces the encryption of the <s:property />
's value with an ESAPI library.
The question is: how can I read the value of the custom encrypt
attribute ?
jsp :
<input type="radio" id="selection" style="width: 20px;" name="convocazioneUtenteSistemaMotorizzazioneView.utenteFrom.progressivoUtente" class="zeroborder" value="<s:property encrypt="true" value="#attr['listConvocazioneUtenteSistemaMotorizzazione'].progressivoUtente" />"
in Java , Can I get the value of "encrypt?"