Skip to content

Commit aef0e99

Browse files
committed
Cookie name will be SESSION
1 parent a4bc8f1 commit aef0e99

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

orcid-web/src/main/java/org/orcid/frontend/web/controllers/HomeController.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class HomeController extends BaseController {
5353

5454
private static final Locale DEFAULT_LOCALE = Locale.US;
5555

56-
private static final String JSESSIONID = "JSESSIONID";
56+
private static final String SESSION_COOKIE_NAME = "SESSION";
5757

5858
@Value("${org.orcid.core.aboutUri:http://about.orcid.org}")
5959
private String aboutUri;
@@ -139,30 +139,30 @@ Object getUserStatusJson(HttpServletRequest request, HttpServletResponse respons
139139
}
140140

141141
if (logUserOut != null && logUserOut.booleanValue()) {
142-
removeJSessionIdCookie(request, response);
142+
removeSessionIdCookie(request, response);
143143
SecurityContextHolder.clearContext();
144144
if(request.getSession(false) != null) {
145145
request.getSession().invalidate();
146-
}
147-
146+
}
147+
148148
logoutCurrentUser(request, response);
149-
149+
150150
UserStatus us = new UserStatus();
151151
us.setLoggedIn(false);
152152
return us;
153153
} else {
154154
UserStatus us = new UserStatus();
155-
us.setLoggedIn((orcid != null));
155+
us.setLoggedIn((orcid != null));
156156
return us;
157-
}
157+
}
158158
}
159-
160-
private void removeJSessionIdCookie(HttpServletRequest request, HttpServletResponse response) {
159+
160+
private void removeSessionIdCookie(HttpServletRequest request, HttpServletResponse response) {
161161
Cookie[] cookies = request.getCookies();
162162
// Delete cookie and token associated with that cookie
163163
if (cookies != null) {
164164
for (Cookie cookie : cookies) {
165-
if (JSESSIONID.equals(cookie.getName())) {
165+
if (SESSION_COOKIE_NAME.equals(cookie.getName())) {
166166
cookie.setValue(StringUtils.EMPTY);
167167
cookie.setMaxAge(0);
168168
response.addCookie(cookie);

0 commit comments

Comments
 (0)