com.sun.xml.internal.ws.api.pipe.ServerTubeAssemblerContext Java Examples
The following examples show how to use
com.sun.xml.internal.ws.api.pipe.ServerTubeAssemblerContext.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StandaloneTubeAssembler.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #2
Source File: StandaloneTubeAssembler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #3
Source File: StandaloneTubeAssembler.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #4
Source File: StandaloneTubeAssembler.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #5
Source File: StandaloneTubeAssembler.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #6
Source File: StandaloneTubeAssembler.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #7
Source File: StandaloneTubeAssembler.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #8
Source File: StandaloneTubeAssembler.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * On Server-side, HandlerChains cannot be changed after it is deployed. * During assembling the Pipelines, we can decide if we really need a * SOAPHandlerPipe and LogicalHandlerPipe for a particular Endpoint. */ public Tube createServer(ServerTubeAssemblerContext context) { Tube head = context.getTerminalTube(); head = context.createValidationTube(head); head = context.createHandlerTube(head); head = context.createMonitoringTube(head); head = context.createServerMUTube(head); head = context.createWsaTube(head); if (dump) { // for debugging inject a dump pipe. this is left in the production code, // as it would be very handy for a trouble-shooting at the production site. head = context.createDumpTube("server", System.out, head); } head = context.createSecurityTube(head); return head; }
Example #9
Source File: DefaultServerTubelineAssemblyContext.java From hottub with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #10
Source File: MetroTubelineAssembler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }
Example #11
Source File: WSEndpointMOMProxy.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
@Override public ServerTubeAssemblerContext getAssemblerContext() { return this.wsEndpoint.getAssemblerContext(); }
Example #12
Source File: WSEndpointMOMProxy.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Override public ServerTubeAssemblerContext getAssemblerContext() { return this.wsEndpoint.getAssemblerContext(); }
Example #13
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #14
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public ServerTubeAssemblerContext getWrappedContext() { return wrappedContext; }
Example #15
Source File: MetroTubelineAssembler.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }
Example #16
Source File: MetroTubelineAssembler.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }
Example #17
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public ServerTubeAssemblerContext getWrappedContext() { return wrappedContext; }
Example #18
Source File: WSEndpointMOMProxy.java From hottub with GNU General Public License v2.0 | 4 votes |
@Override public ServerTubeAssemblerContext getAssemblerContext() { return this.wsEndpoint.getAssemblerContext(); }
Example #19
Source File: DefaultServerTubelineAssemblyContext.java From hottub with GNU General Public License v2.0 | 4 votes |
public ServerTubeAssemblerContext getWrappedContext() { return wrappedContext; }
Example #20
Source File: MetroTubelineAssembler.java From hottub with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }
Example #21
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #22
Source File: WSEndpointMOMProxy.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
@Override public ServerTubeAssemblerContext getAssemblerContext() { return this.wsEndpoint.getAssemblerContext(); }
Example #23
Source File: WSEndpointMOMProxy.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
@Override public ServerTubeAssemblerContext getAssemblerContext() { return this.wsEndpoint.getAssemblerContext(); }
Example #24
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #25
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public ServerTubeAssemblerContext getWrappedContext() { return wrappedContext; }
Example #26
Source File: MetroTubelineAssembler.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }
Example #27
Source File: DefaultServerTubelineAssemblyContext.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #28
Source File: DefaultServerTubelineAssemblyContext.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public DefaultServerTubelineAssemblyContext(@NotNull ServerTubeAssemblerContext context) { this.wrappedContext = context; this.policyMap = context.getEndpoint().getPolicyMap(); }
Example #29
Source File: DefaultServerTubelineAssemblyContext.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public ServerTubeAssemblerContext getWrappedContext() { return wrappedContext; }
Example #30
Source File: MetroTubelineAssembler.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
protected DefaultServerTubelineAssemblyContext createServerContext(ServerTubeAssemblerContext jaxwsContext) { return new DefaultServerTubelineAssemblyContext(jaxwsContext); }