1
0
mirror of synced 2026-05-22 21:33:16 +00:00

SEC-2853: Rename WebSocket XML Namespace elements

This commit is contained in:
Rob Winch
2015-02-18 16:38:52 -06:00
parent 706e7fd7a2
commit fea03536d6
10 changed files with 93 additions and 93 deletions
@@ -197,7 +197,7 @@ public class SecurityContextChannelInterceptorTests {
}
/**
* If a user sends a message when processing another message
* If a user sends a websocket when processing another websocket
*
* @throws Exception
*/
@@ -213,7 +213,7 @@ public class SecurityContextChannelInterceptorTests {
assertThat(SecurityContextHolder.getContext().getAuthentication()).isSameAs(authentication);
// start send message
// start send websocket
messageBuilder.setHeader(SimpMessageHeaderAccessor.USER_HEADER, null);
interceptor.beforeHandle(messageBuilder.build(), channel, handler);
@@ -222,7 +222,7 @@ public class SecurityContextChannelInterceptorTests {
interceptor.afterMessageHandled(messageBuilder.build(), channel, handler, null);
assertThat(SecurityContextHolder.getContext().getAuthentication()).isSameAs(authentication);
// end send message
// end send websocket
interceptor.afterMessageHandled(messageBuilder.build(), channel, handler, null);