Java源码示例:com.sun.xml.internal.ws.api.pipe.TubeCloner

示例1
protected AbstractFilterTubeImpl(AbstractFilterTubeImpl that, TubeCloner cloner) {
    super(that, cloner);
    if (that.next != null) {
        this.next = cloner.copy(that.next);
    } else {
        this.next = null;
    }
}
 
示例2
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;
}
 
示例3
/**
 * Copy constructor.
 */
MessageDumpingTube(MessageDumpingTube that, TubeCloner cloner) {
    super(that, cloner);


    this.messageDumpingFeature = that.messageDumpingFeature;
    this.tubeId = ID_GENERATOR.incrementAndGet();
    this.messageDumper = that.messageDumper;
}
 
示例4
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;
}
 
示例5
/**
 * 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;
}
 
示例6
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;
}
 
示例7
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;
}
 
示例8
/**
 * 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;
}
 
示例9
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;
}
 
示例10
/**
 * 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();
}
 
示例11
/**
 * 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;
}
 
示例12
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;
}
 
示例13
protected AbstractFilterTubeImpl(AbstractFilterTubeImpl that, TubeCloner cloner) {
    super(that, cloner);
    if (that.next != null) {
        this.next = cloner.copy(that.next);
    } else {
        this.next = null;
    }
}
 
示例14
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;
}
 
示例15
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */
private ClientSOAPHandlerTube(ClientSOAPHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
}
 
示例16
protected ClientMUTube(ClientMUTube that, TubeCloner cloner) {
    super(that,cloner);
}
 
示例17
public ClientMUTube copy(TubeCloner cloner) {
    return new ClientMUTube(this,cloner);
}
 
示例18
/**
 * Copy constructor
 */
private PipeAdapter(PipeAdapter that, TubeCloner cloner) {
    super(that,cloner);
    this.next = ((PipeCloner)cloner).copy(that.next);
}
 
示例19
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */
private ServerSOAPHandlerTube(ServerSOAPHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.handlers = that.handlers;
    this.roles = that.roles;
}
 
示例20
/**
 * Copy constructor.
 */
protected AbstractTubeImpl(AbstractTubeImpl that, TubeCloner cloner) {
    cloner.add(that,this);
}
 
示例21
public PipeAdapter copy(TubeCloner cloner) {
    return new PipeAdapter(this,cloner);
}
 
示例22
/**
 * Copy constructor
 */
private PipeAdapter(PipeAdapter that, TubeCloner cloner) {
    super(that,cloner);
    this.next = ((PipeCloner)cloner).copy(that.next);
}
 
示例23
public AbstractTubeImpl copy(TubeCloner cloner) {
    return new ClientSchemaValidationTube(this,cloner);
}
 
示例24
public WsaClientTube(WsaClientTube that, TubeCloner cloner) {
    super(that, cloner);
}
 
示例25
public WsaClientTube copy(TubeCloner cloner) {
    return new WsaClientTube(this, cloner);
}
 
示例26
public AbstractFilterTubeImpl copy(TubeCloner cloner) {
    return new ClientLogicalHandlerTube(this, cloner);
}
 
示例27
@Override
public W3CWsaClientTube copy(TubeCloner cloner) {
    return new W3CWsaClientTube(this, cloner);
}
 
示例28
public MemberSubmissionWsaServerTube(MemberSubmissionWsaServerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.validation = that.validation;
}
 
示例29
@Override
public MemberSubmissionWsaServerTube copy(TubeCloner cloner) {
    return new MemberSubmissionWsaServerTube(this, cloner);
}
 
示例30
public MemberSubmissionWsaClientTube copy(TubeCloner cloner) {
    return new MemberSubmissionWsaClientTube(this, cloner);
}