Example usage for javax.resource.spi ResourceAdapter interface-usage

List of usage examples for javax.resource.spi ResourceAdapter interface-usage

Introduction

In this page you can find the example usage for javax.resource.spi ResourceAdapter interface-usage.

Usage

From source file org.nuxeo.ecm.core.storage.sql.ra.ResourceAdapterImpl.java

/**
 * This is the singleton representing the resource adapter, created by the
 * application server.
 * <p>
 * It is the central point where all non-local state (network endpoints, etc.)
 * is registered.

From source file org.eclipse.ecr.core.storage.sql.ra.ResourceAdapterImpl.java

/**
 * This is the singleton representing the resource adapter, created by the
 * application server.
 * <p>
 * It is the central point where all non-local state (network endpoints, etc.)
 * is registered.

From source file com.grapevineim.xmpp.ra.ResourceAdapterImpl.java

/**
 * 
 * @author alex
 * 
 */
public class ResourceAdapterImpl implements ResourceAdapter, Serializable {

From source file org.springframework.jca.context.SpringContextResourceAdapter.java

/**
 * JCA 1.7 {@link javax.resource.spi.ResourceAdapter} implementation
 * that loads a Spring {@link org.springframework.context.ApplicationContext},
 * starting and stopping Spring-managed beans as part of the ResourceAdapter's
 * lifecycle.
 *

From source file org.tomitribe.chatterbox.slack.adapter.SlackResourceAdapter.java

@Connector(description = "Sample Resource Adapter", displayName = "Sample Resource Adapter", eisType = "Sample Resource Adapter", version = "1.0")
public class SlackResourceAdapter implements ResourceAdapter, EventListener {
    final Map<SlackActivationSpec, EndpointTarget> targets = new ConcurrentHashMap<SlackActivationSpec, EndpointTarget>();

    @ConfigProperty
    private String token;

From source file me.jtalk.socketconnector.SocketResourceAdapter.java

@Slf4j
@Connector(displayName = Metadata.NAME, description = Metadata.DESCRIPTION, vendorName = Metadata.VENDOR, eisType = Metadata.EIS_TYPE, version = Metadata.VERSION, transactionSupport = TransactionSupport.TransactionSupportLevel.NoTransaction)
public class SocketResourceAdapter implements ResourceAdapter {

    private static final Method TCP_MESSAGE_INIT_METHOD;
    private static final Method TCP_MESSAGE_DATA_METHOD;