All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.smallrye.beanbag.ScopeDefinition Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy