com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext Java Examples

The following examples show how to use com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext. 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: StandalonePipeAssembler.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #2
Source File: StandalonePipeAssembler.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #3
Source File: StandalonePipeAssembler.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #4
Source File: StandalonePipeAssembler.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #5
Source File: StandalonePipeAssembler.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #6
Source File: StandalonePipeAssembler.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #7
Source File: StandalonePipeAssembler.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #8
Source File: StandalonePipeAssembler.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@NotNull
public Pipe createClient(ClientPipeAssemblerContext context) {
    Pipe head = context.createTransportPipe();
    head = context.createSecurityPipe(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.createDumpPipe("client", System.out, head);
    }
    head = context.createWsaPipe(head);
    head = context.createClientMUPipe(head);
    return context.createHandlerPipe(head);
}
 
Example #9
Source File: ClientPipelineHook.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #10
Source File: ClientPipelineHook.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #11
Source File: ClientPipelineHook.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #12
Source File: ClientPipelineHook.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #13
Source File: ClientPipelineHook.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns {@code tail}, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #14
Source File: ClientPipelineHook.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #15
Source File: ClientPipelineHook.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}
 
Example #16
Source File: ClientPipelineHook.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Called during the pipeline construction process once to allow a container
 * to register a pipe for security.
 *
 * This pipe will be injected to a point very close to the transport, allowing
 * it to do some security operations.
 *
 * @param ctxt
 *      Represents abstraction of SEI, WSDL abstraction etc. Context can be used
 *      whether add a new pipe to the head or not.
 *
 * @param tail
 *      Head of the partially constructed pipeline. If the implementation
 *      wishes to add new pipes, it should do so by extending
 *      {@link com.sun.xml.internal.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.internal.ws.api.pipe.Pipe}
 *      eventually processes messages.
 *
 * @return
 *      The default implementation just returns <tt>tail</tt>, which means
 *      no additional pipe is inserted. If the implementation adds
 *      new pipes, return the new head pipe.
 */
public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) {
    return tail;
}