Package com.sun.xml.ws.api.pipe
Class PipeCloner
- java.lang.Object
-
- com.sun.xml.ws.api.pipe.TubeCloner
-
- com.sun.xml.ws.api.pipe.PipeCloner
-
- Direct Known Subclasses:
PipeClonerImpl
public abstract class PipeCloner extends TubeCloner
Deprecated.UseTubeCloner
.Clones the whole pipeline.Since
Pipe
s may form an arbitrary directed graph, someone needs to keep track of isomorphism for a clone to happen correctly. This class serves that role.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
-
Fields inherited from class com.sun.xml.ws.api.pipe.TubeCloner
master2copy
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract void
add(Pipe original, Pipe copy)
Deprecated.ThePipe
version ofTubeCloner.add(Tube, Tube)
.static Pipe
clone(Pipe p)
Deprecated.Pipe
version ofTubeCloner.clone(Tube)
abstract <T extends Pipe>
Tcopy(T p)
Deprecated.Pipe
version ofTubeCloner.copy(Tube)
-
Methods inherited from class com.sun.xml.ws.api.pipe.TubeCloner
add, clone, copy
-
-
-
-
Method Detail
-
clone
public static Pipe clone(Pipe p)
Deprecated.Pipe
version ofTubeCloner.clone(Tube)
-
copy
public abstract <T extends Pipe> T copy(T p)
Deprecated.Pipe
version ofTubeCloner.copy(Tube)
-
add
public abstract void add(Pipe original, Pipe copy)
Deprecated.ThePipe
version ofTubeCloner.add(Tube, Tube)
.
-
-