org.wildfly.clustering.ejb.bean.BeanDeploymentMarshallingContext 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 java.util.Set;
import org.jboss.modules.Module;
/**
* The marshalling context for a bean deployment.
* @author Paul Ferraro
*/
public interface BeanDeploymentMarshallingContext {
/**
* Returns the module of the bean deployment,
* @return the module of the bean deployment
*/
Module getModule();
/**
* The set of bean classes contained in the bean deployment.
* @return a set of bean classes
*/
Set> getBeanClasses();
}