persons

This property is deprecated: use relatedElements instead.

All the persons related to this content item.

Type: java.util.Collection<PresentationPerson>

Example usage

To get all the persons:

${myPresentationArticle.persons}

To access each person in turn:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<c:forEach var="person" items="${myPresentationArticle.persons}">
  <!-- do something with each ${person} -->
</c:forEach>