org.wildfly.clustering.ejb.bean.BeanManagementProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-ejb-spi Show documentation
Show all versions of wildfly-clustering-ejb-spi Show documentation
A set of SPIs for managing distributable @Stateful bean instances for use by the the distributed Jakarta Enterprise Beans cache implementation found in the wildfly-ejb3 module.
This module decouples the mechanism for managing @Stateful bean instances from the Jakarta Enterprise Beans subsystem.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.ejb.bean;
import org.jboss.as.clustering.controller.CapabilityServiceConfigurator;
/**
* Provides service installation mechanics for components of bean deployments.
* @author Paul Ferraro
*/
public interface BeanManagementProvider {
/**
* Returns a name uniquely identifying this provider.
* @return the provider name
*/
String getName();
/**
* Installs dependencies for a deployment unit
* @param configuration a bean deployment configuration
* @return a collection of service configurators
*/
Iterable getDeploymentServiceConfigurators(BeanDeploymentConfiguration configuration);
/**
* Builds a bean manager factory for an Jakarta Enterprise Bean within a deployment.
* @param configuration a bean configuration
* @return a service configurator
*/
CapabilityServiceConfigurator getBeanManagerFactoryServiceConfigurator(BeanConfiguration configuration);
}