本文整理汇总了Java中com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext类的典型用法代码示例。如果您正苦于以下问题:Java ClientPipeAssemblerContext类的具体用法?Java ClientPipeAssemblerContext怎么用?Java ClientPipeAssemblerContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ClientPipeAssemblerContext类属于com.sun.xml.internal.ws.api.pipe包,在下文中一共展示了ClientPipeAssemblerContext类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createClient
import com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext; //导入依赖的package包/类
@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);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:StandalonePipeAssembler.java
示例2: createSecurityPipe
import com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext; //导入依赖的package包/类
/**
* 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;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:26,代码来源:ClientPipelineHook.java
示例3: createSecurityPipe
import com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext; //导入依赖的package包/类
/**
* 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;
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:26,代码来源:ClientPipelineHook.java
注:本文中的com.sun.xml.internal.ws.api.pipe.ClientPipeAssemblerContext类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论