org.oasisopen.sca.annotation.Service.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(5.5k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中org.oasisopen.sca.annotation.Service.<init>()方法的一些代码示例,展示了Service.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Service.<init>()方法的具体详情如下:
包路径:org.oasisopen.sca.annotation.Service
类名称:Service
方法名:<init>

Service.<init>介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.service-conduit/sca4j-spi

/**
 * Empty interface for a service component that has no operations.
 * This can be used as a default service interface by components that
 * do not wish the base class to be used as the interface as specified
 * by the defaulting rules. 
 *
 * @version $Rev: 1 $ $Date: 2007-05-14 18:40:37 +0100 (Mon, 14 May 2007) $
 */
@Service(value={VoidService.class})
public interface VoidService {
}

代码示例来源:origin: org.apache.tuscany.sca/tuscany-databinding-json

@Service(Transformer.class)
public class JSON2OMElement extends BaseTransformer<Object, OMElement> implements PullTransformer<Object, OMElement> {

代码示例来源:origin: com.carecon.fabric3/fabric3-jpa-hibernate

@Service(OverrideRegistry.class)
public class OverrideRegistryImpl implements OverrideRegistry, ContributionServiceListener {
  private Map<URI, List<PersistenceOverrides>> index = new ConcurrentHashMap<>();

代码示例来源:origin: org.fabric3/fabric3-jpa-hibernate

@Service(OverrideRegistry.class)
public class OverrideRegistryImpl implements OverrideRegistry, ContributionServiceListener {
  private Map<URI, List<PersistenceOverrides>> index = new ConcurrentHashMap<>();

代码示例来源:origin: org.codehaus.fabric3/fabric3-fabric

/**
 * Managed composite-scoped components. Composite-scoped components have one instance per runtime where the component's parent composite is deployed.
 */
@EagerInit
@Service(ScopeContainer.class)
public class CompositeScopeContainer extends SingletonScopeContainer {

  public CompositeScopeContainer(@Monitor ScopeContainerMonitor monitor) {
    super(Scope.COMPOSITE, monitor);
  }
}

代码示例来源:origin: com.carecon.fabric3/fabric3-fabric

/**
 * Managed composite-scoped components. Composite-scoped components have one instance per runtime where the component's parent composite is deployed.
 */
@EagerInit
@Service(ScopeContainer.class)
public class CompositeScopeContainer extends SingletonScopeContainer {

  public CompositeScopeContainer(@Monitor ScopeContainerMonitor monitor) {
    super(Scope.COMPOSITE, monitor);
  }
}

代码示例来源:origin: org.fabric3/fabric3-fabric

/**
 * Managed composite-scoped components. Composite-scoped components have one instance per runtime where the component's parent composite is deployed.
 */
@EagerInit
@Service(ScopeContainer.class)
public class CompositeScopeContainer extends SingletonScopeContainer {

  public CompositeScopeContainer(@Monitor ScopeContainerMonitor monitor) {
    super(Scope.COMPOSITE, monitor);
  }
}

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=EmptyBehaviour.class,names="service")
public class EmptyBehaviourImpl extends AbstractBehaviourImpl implements EmptyBehaviour {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=ExitBehaviour.class,names="service")
public class ExitBehaviourImpl extends AbstractBehaviourImpl implements ExitBehaviour {

代码示例来源:origin: com.carecon.fabric3/fabric3-fabric

@Service(ScopeContainer.class)
public class StatelessScopeContainer extends AbstractScopeContainer {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=MemoryReceiver.class,names="service")
@PolicySets("frascati:scaEasyPrimitive")
public class MemoryReceiverImpl extends AbstractReceiverImpl implements

代码示例来源:origin: org.fabric3/fabric3-fabric

@Service(ScopeContainer.class)
public class StatelessScopeContainer extends AbstractScopeContainer {

代码示例来源:origin: org.codehaus.fabric3/fabric3-fabric

@Service(ScopeContainer.class)
public class StatelessScopeContainer extends AbstractScopeContainer {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=ForkBehaviour.class,names="service")
public class ForkBehaviourImpl extends AbstractBehaviourImpl implements ForkBehaviour {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=ReThrowBehaviour.class,names="service")
public class ReThrowBehaviourImpl extends AbstractBehaviourImpl implements ReThrowBehaviour {

代码示例来源:origin: com.ebmwebsourcing.easyviper.extended-behaviours/extended-behaviours-abstractbehaviour

@Service(value=ExtendedBehaviour.class,names="extended_behavior_service")
@PolicySets("frascati:scaEasyPrimitive")
public abstract class AbstractExtendedBehaviourImpl extends AbstractBehaviourImpl implements ExtendedBehaviour {

代码示例来源:origin: com.ebmwebsourcing.easyviper/environment-test

@Service(value=Endpoint.class,names="service")
@PolicySets("frascati:scaEasyPrimitive")
public abstract class AbstractEndpointImpl extends SCAComponentImpl implements Endpoint {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=Sender.class,names="service")
@PolicySets("frascati:scaEasyPrimitive")
public abstract class AbstractSenderImpl extends SCAComponentImpl implements Sender {

代码示例来源:origin: com.ebmwebsourcing.easyviper/core-impl

@org.oasisopen.sca.annotation.Service(value=Receiver.class,names="service")
@PolicySets("frascati:scaEasyPrimitive")
public abstract class AbstractReceiverImpl extends SCAComponentImpl implements Receiver {

代码示例来源:origin: com.ebmwebsourcing.easyviper/environment-test

@org.oasisopen.sca.annotation.Service(value=ProviderEndpoint.class,names="service")
@PolicySets("frascati:scaEasyPrimitive")
public class ProviderEndpointImpl extends SCAComponentImpl implements ProviderEndpoint {

相关文章

微信公众号

最新文章

更多