当前位置: 首页>>代码示例>>Java>>正文


Java Destination类代码示例

本文整理汇总了Java中org.apache.cxf.transport.Destination的典型用法代码示例。如果您正苦于以下问题:Java Destination类的具体用法?Java Destination怎么用?Java Destination使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Destination类属于org.apache.cxf.transport包,在下文中一共展示了Destination类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getDestination

import org.apache.cxf.transport.Destination; //导入依赖的package包/类
@Override
public Destination getDestination(EndpointInfo endpointInfo, Bus b) throws IOException {
    LOG.debug("Create CxfBeanDestination: {}", endpointInfo);
    
    // lookup endpoint from component instead of CamelContext because it may not
    // be added to the CamelContext yet.
    return new CxfBeanDestination(cxfBeanComponent, b, this, endpointInfo);
}
 
开发者ID:HydAu,项目名称:Camel,代码行数:9,代码来源:CxfBeanTransportFactory.java

示例2: getDestination

import org.apache.cxf.transport.Destination; //导入依赖的package包/类
protected Destination getDestination(EndpointInfo ei,
                                     EndpointReferenceType reference,
                                     Bus bus)
    throws IOException {
    if (reference == null) {
        reference = createReference(ei);
    }
    return new UDPDestination(bus, reference, ei);
}
 
开发者ID:jbossws,项目名称:jbossws-cxf,代码行数:10,代码来源:UDPTransportFactory.java

示例3: initialize

import org.apache.cxf.transport.Destination; //导入依赖的package包/类
@Override
public void initialize(Server server, Bus bus) {
    checkZmqConfig();
    Destination destination = server.getDestination();
    if (!(destination instanceof ZMQDestination)) {
        throw new ConfigurationException(new Message("ZMQCONFIGFEATURE_ONLY_ZMQ", LOG));
    }
    Endpoint ep = server.getEndpoint();
    changeTransportUriToZmq(ep);
    ZMQDestination zmqDestination = (ZMQDestination)destination;
    zmqDestination.setZmqConfig(zmqConfig);
    super.initialize(server, bus);
}
 
开发者ID:claudemamo,项目名称:cxf-rt-transports-zeromq,代码行数:14,代码来源:ZMQConfigFeature.java

示例4: getDestination

import org.apache.cxf.transport.Destination; //导入依赖的package包/类
public Destination getDestination(EndpointInfo endpointInfo) throws IOException {
    return getDestination(endpointInfo, bus);
}
 
开发者ID:HydAu,项目名称:Camel,代码行数:4,代码来源:CamelTransportFactory.java


注:本文中的org.apache.cxf.transport.Destination类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。