Java Doc for TubelineAssemblerFactory.java in » 6.0-JDK-Modules » jax-ws-runtime » com » sun » xml » ws » api » pipe » Java Source Code / Java DocumentationJava Source Code and Java Documentation
abstractpublic class TubelineAssemblerFactory (Code)
Creates
TubelineAssembler .
To create a tubeline,
the JAX-WS runtime locates
TubelineAssemblerFactory s through
the META-INF/services/com.sun.xml.ws.api.pipe.TubelineAssemblerFactory files.
Factories found are checked to see if it supports the given binding ID one by one,
and the first valid
TubelineAssembler returned will be used to create
a tubeline.
author: Jitendra Kotamraju
Locates
TubelineAssemblerFactory s and create
a suitable
TubelineAssembler .
Parameters: bindingId - The binding ID string for which the new TubelineAssembleris created. Must not be null. Parameters: container - if specified, the container is given a chance to specify a TubelineAssemblerinstance. This parameter should be always given on the server, but can be null. Always non-null, since we fall back to our default TubelineAssembler.
Creates a
TubelineAssembler applicable for the given binding ID.
Parameters: bindingId - The binding ID for which a tubeline will be created,such as javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_BINDING.Must not be null. null if this factory doesn't recognize the given binding ID.