Skip to content

Commit 9baacc0

Browse files
committed
Completed end session endpoint
Addresses mitreid-connect#1129, addresses mitreid-connect#972, addresses mitreid-connect#891, addresses mitreid-connect#1223
1 parent 2aa12fc commit 9baacc0

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

openid-connect-server-webapp/src/main/webapp/WEB-INF/views/postLogout.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div class="container main">
1414

1515
<div class="well" style="text-align: center">
16-
<h1><spring:message code="logout.post.title" /></h1>
16+
<h1><spring:message code="logout.post.header" /></h1>
1717

1818
<security:authorize access="hasRole('ROLE_USER')">
1919
<div class=""><spring:message code="logout.post.notLoggedOut" /></div>

openid-connect-server-webapp/src/main/webapp/resources/js/locale/en/messages.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,5 +516,21 @@
516516
"approved": "The device has been approved.",
517517
"notApproved": "The device has not been approved."
518518
}
519+
},
520+
"logout": {
521+
"confirmation": {
522+
"title": "Logout requested",
523+
"header": "Logout Requested",
524+
"requested": "Logout has been requested by ",
525+
"explanation": "Do you wan to log out of the identity provider? This will not affect your session at any other systems.",
526+
"submit": "Log Out",
527+
"deny": "Stay Logged In"
528+
},
529+
"post": {
530+
"title": "Log out",
531+
"header": "Log Out",
532+
"notLoggedOut": "You have not been logged out of the identity server. You may close this browser or log in again.",
533+
"loggedOut": "You have been logged out of the identity server."
534+
}
519535
}
520536
}

openid-connect-server/src/main/java/org/mitre/openid/connect/web/EndSessionEndpoint.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
import com.nimbusds.jwt.JWTParser;
5353

5454
/**
55+
* Implementation of the End Session Endpoint from OIDC session management
56+
*
5557
* @author jricher
5658
*
5759
*/

0 commit comments

Comments
 (0)