Package org.springframework.integration.x.ip.websocket.WebSocketTcpConnectionInterceptorFactory

Examples of org.springframework.integration.x.ip.websocket.WebSocketTcpConnectionInterceptorFactory.WebSocketTcpConnectionInterceptor


    this.connectionInterceptorFactory = connectionInterceptorFactory;
  }

  @Override
  protected Map<String, ?> supplyCustomHeaders(TcpConnection connection) {
    WebSocketTcpConnectionInterceptor interceptor = this.connectionInterceptorFactory.locateInterceptor(connection);
    return interceptor == null ? null : interceptor.getAdditionalHeaders();
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.x.ip.websocket.WebSocketTcpConnectionInterceptorFactory.WebSocketTcpConnectionInterceptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.