io.smallrye.beanbag.ScopeDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-beanbag Show documentation
Show all versions of smallrye-beanbag Show documentation
A trivial programmatic bean container implementation
package io.smallrye.beanbag;
import java.util.List;
/**
* A definition for a scope.
*/
final class ScopeDefinition {
private final List> definitions;
ScopeDefinition(final List> definitions) {
this.definitions = definitions;
}
List> getBeanDefinitions() {
return definitions;
}
}