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

org.osgl.inject.CDIAdaptor Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
package org.osgl.inject;

import org.osgl.inject.annotation.RequestScoped;
import org.osgl.inject.annotation.SessionScoped;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Singleton;

public class CDIAdaptor implements GeniePlugin {
    @Override
    public void register(Genie genie) {
        genie.registerScopeAlias(Singleton.class, ApplicationScoped.class);
        genie.registerScopeAlias(SessionScoped.class, javax.enterprise.context.SessionScoped.class);
        genie.registerScopeAlias(RequestScoped.class, javax.enterprise.context.RequestScoped.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy