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

de.leanovate.pragmatic.ioc.Scopes Maven / Gradle / Ivy

The newest version!
package de.leanovate.pragmatic.ioc;

/**
 * Collection of commonly used {@link de.leanovate.pragmatic.ioc.Scope}s.
 */
public class Scopes {
    static volatile Scope singletonScope = new SingletonScope();

    public static Scope getSingletonScope() {

        return singletonScope;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy