casServiceValidationSuccess.html 721 B

123456789101112131415
  1. <cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'>
  2. <cas:authenticationSuccess>
  3. <cas:user th:text="${principal.id}"/>
  4. <cas:proxyGrantingTicket th:if="${pgtIou}" th:text="${pgtIou}"/>
  5. <cas:proxies th:if="${not #lists.isEmpty(chainedAuthentications)}">
  6. <cas:proxy th:each="proxy : ${chainedAuthentications}" th:text="${proxy.principal.id}"/>
  7. </cas:proxies>
  8. <cas:attributes th:if="${not #lists.isEmpty(formattedAttributes)}">
  9. <div th:each="attr : ${formattedAttributes}" th:remove="tag">
  10. <div th:utext="${attr}" th:remove="tag"/>
  11. </div>
  12. </cas:attributes>
  13. </cas:authenticationSuccess>
  14. </cas:serviceResponse>