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

The following examples show how to use com.sun.xml.internal.ws.api.pipe.TubeCloner. 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: ClientSchemaValidationTube.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
protected ClientSchemaValidationTube(ClientSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    this.port = that.port;
    this.schema = that.schema;
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
}
 
Example #2
Source File: MessageDumpingTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Copy constructor.
 */
MessageDumpingTube(MessageDumpingTube that, TubeCloner cloner) {
    super(that, cloner);


    this.messageDumpingFeature = that.messageDumpingFeature;
    this.tubeId = ID_GENERATOR.incrementAndGet();
    this.messageDumper = that.messageDumper;
}
 
Example #3
Source File: WsaTube.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public WsaTube(WsaTube that, TubeCloner cloner) {
    super(that, cloner);
    this.wsdlPort = that.wsdlPort;
    this.binding = that.binding;
    this.helper = that.helper;
    addressingVersion = that.addressingVersion;
    soapVersion = that.soapVersion;
    addressingRequired = that.addressingRequired;
}
 
Example #4
Source File: AbstractFilterTubeImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
protected AbstractFilterTubeImpl(AbstractFilterTubeImpl that, TubeCloner cloner) {
    super(that, cloner);
    if (that.next != null) {
        this.next = cloner.copy(that.next);
    } else {
        this.next = null;
    }
}
 
Example #5
Source File: ServerSchemaValidationTube.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
protected ServerSchemaValidationTube(ServerSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    //this.docs = that.docs;
    this.schema = that.schema;      // Schema is thread-safe
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
    this.seiModel = that.seiModel;
    this.wsdlPort = that.wsdlPort;
}
 
Example #6
Source File: ServerLogicalHandlerTube.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */

private ServerLogicalHandlerTube(ServerLogicalHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.seiModel = that.seiModel;
    this.handlers = that.handlers;
}
 
Example #7
Source File: ServerSchemaValidationTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
protected ServerSchemaValidationTube(ServerSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    //this.docs = that.docs;
    this.schema = that.schema;      // Schema is thread-safe
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
    this.seiModel = that.seiModel;
    this.wsdlPort = that.wsdlPort;
}
 
Example #8
Source File: LoggingDumpTube.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Copy constructor.
 */
private LoggingDumpTube(LoggingDumpTube original, TubeCloner cloner) {
    super(original, cloner);

    this.messageDumper = original.messageDumper;
    this.loggingLevel = original.loggingLevel;
    this.position = original.position;

    this.tubeId = ID_GENERATOR.incrementAndGet();
}
 
Example #9
Source File: ClientSchemaValidationTube.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
protected ClientSchemaValidationTube(ClientSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    this.port = that.port;
    this.schema = that.schema;
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
}
 
Example #10
Source File: WsaTube.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public WsaTube(WsaTube that, TubeCloner cloner) {
    super(that, cloner);
    this.wsdlPort = that.wsdlPort;
    this.binding = that.binding;
    this.helper = that.helper;
    addressingVersion = that.addressingVersion;
    soapVersion = that.soapVersion;
    addressingRequired = that.addressingRequired;
}
 
Example #11
Source File: ServerMessageHandlerTube.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */
private ServerMessageHandlerTube(ServerMessageHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.seiModel = that.seiModel;
    this.handlers = that.handlers;
    this.roles = that.roles;
}
 
Example #12
Source File: AbstractFilterTubeImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
protected AbstractFilterTubeImpl(AbstractFilterTubeImpl that, TubeCloner cloner) {
    super(that, cloner);
    if (that.next != null) {
        this.next = cloner.copy(that.next);
    } else {
        this.next = null;
    }
}
 
Example #13
Source File: WsaTube.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public WsaTube(WsaTube that, TubeCloner cloner) {
    super(that, cloner);
    this.wsdlPort = that.wsdlPort;
    this.binding = that.binding;
    this.helper = that.helper;
    addressingVersion = that.addressingVersion;
    soapVersion = that.soapVersion;
    addressingRequired = that.addressingRequired;
}
 
Example #14
Source File: ServerLogicalHandlerTube.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */

private ServerLogicalHandlerTube(ServerLogicalHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.seiModel = that.seiModel;
    this.handlers = that.handlers;
}
 
Example #15
Source File: MessageDumpingTube.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public MessageDumpingTube copy(TubeCloner cloner) {
    return new MessageDumpingTube(this, cloner);
}
 
Example #16
Source File: MemberSubmissionWsaServerTube.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public MemberSubmissionWsaServerTube copy(TubeCloner cloner) {
    return new MemberSubmissionWsaServerTube(this, cloner);
}
 
Example #17
Source File: ServerSchemaValidationTube.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public AbstractTubeImpl copy(TubeCloner cloner) {
    return new ServerSchemaValidationTube(this,cloner);
}
 
Example #18
Source File: WsaClientTube.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public WsaClientTube(WsaClientTube that, TubeCloner cloner) {
    super(that, cloner);
}
 
Example #19
Source File: W3CWsaServerTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Override
public W3CWsaServerTube copy(TubeCloner cloner) {
    return new W3CWsaServerTube(this, cloner);
}
 
Example #20
Source File: W3CWsaServerTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public W3CWsaServerTube(W3CWsaServerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.af = that.af;
}
 
Example #21
Source File: ServerSOAPHandlerTube.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public AbstractFilterTubeImpl copy(TubeCloner cloner) {
    return new ServerSOAPHandlerTube(this, cloner);
}
 
Example #22
Source File: MUTube.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected MUTube(MUTube that, TubeCloner cloner) {
    super(that, cloner);
    binding = that.binding;
    soapVersion = that.soapVersion;
}
 
Example #23
Source File: ClientMUTube.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected ClientMUTube(ClientMUTube that, TubeCloner cloner) {
    super(that,cloner);
}
 
Example #24
Source File: W3CWsaClientTube.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public W3CWsaClientTube copy(TubeCloner cloner) {
    return new W3CWsaClientTube(this, cloner);
}
 
Example #25
Source File: WsaClientTube.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public WsaClientTube(WsaClientTube that, TubeCloner cloner) {
    super(that, cloner);
}
 
Example #26
Source File: ServerSOAPHandlerTube.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public AbstractFilterTubeImpl copy(TubeCloner cloner) {
    return new ServerSOAPHandlerTube(this, cloner);
}
 
Example #27
Source File: PipeAdapter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public PipeAdapter copy(TubeCloner cloner) {
    return new PipeAdapter(this,cloner);
}
 
Example #28
Source File: WsaClientTube.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public WsaClientTube(WsaClientTube that, TubeCloner cloner) {
    super(that, cloner);
}
 
Example #29
Source File: W3CWsaClientTube.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public W3CWsaClientTube copy(TubeCloner cloner) {
    return new W3CWsaClientTube(this, cloner);
}
 
Example #30
Source File: Pool.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
protected Tube create() {
    return TubeCloner.clone(master);
}