org.wildfly.clustering.ejb.cache.bean.MutableBeanGroup Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.ejb.cache.bean;
import org.wildfly.clustering.cache.CacheEntryMutator;
import org.wildfly.clustering.ejb.bean.BeanInstance;
/**
* A bean group with the ability to mutate.
* @author Paul Ferraro
* @param the bean identifier type
* @param the bean instance type
*/
public interface MutableBeanGroup> extends BeanGroup, CacheEntryMutator {
}