Rename handshakeAttributes to just attributes

Issue: SPR-11566
This commit is contained in:
Rossen Stoyanchev
2014-03-19 12:25:08 -04:00
parent 1fa4a7d34f
commit 48b62e80d5
13 changed files with 62 additions and 56 deletions

View File

@@ -95,12 +95,12 @@ public class TestWebSocketSession implements WebSocketSession {
this.headers = headers;
}
public void setHandshakeAttributes(Map<String, Object> attributes) {
public void setAttributes(Map<String, Object> attributes) {
this.attributes = attributes;
}
@Override
public Map<String, Object> getHandshakeAttributes() {
public Map<String, Object> getAttributes() {
return this.attributes;
}