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

org.jboss.cdi.tck.tests.context.passivating.broken.producer.method.enterprise.ProducerMethodParamInjectionCorralBroken Maven / Gradle / Ivy

There is a newer version: 2.0.5.SP1
Show newest version
package org.jboss.cdi.tck.tests.context.passivating.broken.producer.method.enterprise;

import javax.ejb.Stateful;
import javax.enterprise.context.SessionScoped;
import javax.enterprise.inject.Produces;

@Stateful
@SessionScoped
public class ProducerMethodParamInjectionCorralBroken extends Ranch {
    @Override
    public void ping() {
        
    }
    
    @Produces
    @British
    @SessionScoped
    public Herd produce(@British Cow cow){
       return new Herd();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy