Skip to content

Commit

Permalink
#226: use deprecated context for backward compatibility
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Jun 3, 2021
1 parent dc55cd0 commit 79e28a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ protected WSEndpointImpl(@NotNull QName serviceName, @NotNull QName portName, WS

protected ServerTubeAssemblerContext createServerTubeAssemblerContext(
EndpointAwareTube terminalTube, boolean isSynchronous) {
ServerTubeAssemblerContext ctx = new ServerTubeAssemblerContext(
ServerTubeAssemblerContext ctx = new ServerPipeAssemblerContext(
seiModel, port, this, terminalTube, isSynchronous);
return ctx;
}
Expand All @@ -234,7 +234,7 @@ protected WSEndpointImpl(@NotNull QName serviceName, @NotNull QName portName, WS
initManagedObjectManager();

this.operationDispatcher = (port == null) ? null : new OperationDispatcher(port, binding, seiModel);
this.context = new ServerTubeAssemblerContext(
this.context = new ServerPipeAssemblerContext(
seiModel, port, this, null /* not known */, false);

tubePool = new TubePool(masterTubeline);
Expand Down

0 comments on commit 79e28a7

Please sign in to comment.