Problemas com commandLink no JSF!

<h:commandLink styleClass=“link_noticia” value="#{item.data}" action="#{agchefe.detailSetup}">
<f:convertDateTime type=“DATE” pattern=“dd/MM/yyyy”/>
</h:commandLink>

Boa tarde galera alguem pode me ajudar, estou com problemas na hora de exibir a data formatada no commandLink ele não aceita pra commandLink alguém conhece a alguma solução ?

Cara, não é assim que se usa o convertDateTime

<h:commandLink styleClass="link_noticia" action="#{agchefe.detailSetup}"> 
    <h:outputText value="#{item.data}">
        <f:convertDateTime type="DATE" pattern="dd/MM/yyyy"/> 
    </h:outputText>
</h:commandLink>