Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 510e371

Browse files
committed
update config
1 parent 9f733ae commit 510e371

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/org/apereo/cas/FederationServlet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
5353
out.println("<br><b><span id='claims'>Claims</span></b>");
5454
ClaimCollection claims = fp.getClaims();
5555
out.println("<ul id='listOfClaims'>");
56+
int count = 0;
5657
for (Claim c : claims) {
57-
out.println("<li>" + c.getClaimType().toString().trim() + ":" + c.getValue() + "</li>");
58+
out.println("<li id='claim" + count + "'>" + c.getClaimType().toString().trim() + ":" + c.getValue() + "</li>");
59+
count++;
5860
}
5961
out.println("</ul>");
6062
} else {

0 commit comments

Comments
 (0)