public class MyOfficeMetadataExtracter extends AbstractMetadataExtracter {
//métadonnée présente dans le modèle par défaut
static final QName PROP_AUTHOR = QName.createQName("http://www.alfresco.org/model/content/1.0", "author");
//métadonnée rajoutée dans mon modèle et affichée sur la page web sans problème
static final QName PROP_KEYWORD = QName.createQName("http://mon.model.perso/model/content/1.0", "keyword");
//…
public void extractInternal(ContentReader reader, final Map<QName, Serializable> destination) throws Throwable {
//… plus simplement, je soumets une string quelconque :
trimPut(PROP_AUTHOR, "mon auteur", destination);
trimPut(PROP_KEYWORDS, "mon mot-cle", destination);
//…
}
}
Lors de la soumission d'un document, le champ "auteur" affiche bien "mon auteur", mais le champ "mot-clé" n'affiche rien du tout ! Je ne vois pas contourner ce problème pour afficher les métadonnées personnalisées et je ne vois pas ce que j'ai pu oublier !Content from pre 2016 and from language groups that have been closed.
Content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.