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

org.jboss.cdi.tck.tests.implementation.simple.newSimpleBean.Consumer Maven / Gradle / Ivy

There is a newer version: 2.0.5.SP1
Show newest version
package org.jboss.cdi.tck.tests.implementation.simple.newSimpleBean;

import javax.enterprise.inject.New;
import javax.inject.Inject;

public class Consumer {

    @Inject
    private ExplicitContructorSimpleBean explicitConstructorBean;

    @Inject
    @New
    private ExplicitContructorSimpleBean newExplicitConstructorBean;

    @Inject
    private InitializerSimpleBean initializerSimpleBean;

    @Inject
    @New
    private InitializerSimpleBean newInitializerSimpleBean;

    public ExplicitContructorSimpleBean getExplicitConstructorBean() {
        return explicitConstructorBean;
    }

    public ExplicitContructorSimpleBean getNewExplicitConstructorBean() {
        return newExplicitConstructorBean;
    }

    public InitializerSimpleBean getInitializerSimpleBean() {
        return initializerSimpleBean;
    }

    public InitializerSimpleBean getNewInitializerSimpleBean() {
        return newInitializerSimpleBean;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy