| | |
| | | private HttpSession httpSession; |
| | | |
| | | @Autowired |
| | | public void setService(InterfaceService service, EndpointConfig config) { |
| | | public void setService(InterfaceService service) { |
| | | InterfaceBattAlarmSocket.service = service; |
| | | this.httpSession = (HttpSession) config.getUserProperties().get("httpSession"); |
| | | } |
| | | |
| | | @OnOpen |
| | | public void onOpen(Session session) { |
| | | public void onOpen(Session session, EndpointConfig config) { |
| | | this.session = session; |
| | | this.httpSession = (HttpSession) config.getUserProperties().get("httpSession"); |
| | | } |
| | | |
| | | @OnMessage |