Package org.apache.wicket.protocol.ws.api

Examples of org.apache.wicket.protocol.ws.api.WebSocketRequest


  public WsBehaviorAndWebRequest(WebRequest request,
      WebsocketBehavior behavior) {
    super();
    WicketFilter wicketFilter = ((WebApplication)Application.get()).getWicketFilter();
   
    this.request =  new WebSocketRequest(new ServletRequestCopy((HttpServletRequest) request.getContainerRequest()),
        "");
    this.behavior = behavior;
  }   
View Full Code Here

TOP

Related Classes of org.apache.wicket.protocol.ws.api.WebSocketRequest

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.