1 22 package org.jboss.ejb3.test.dependency; 23 24 import javax.ejb.Stateless ; 25 import org.jboss.annotation.ejb.Depends; 26 27 33 @Stateless 34 @Depends("jboss.test:service=DependedOn") 35 public class HasMBeanDependencyBean implements HasMBeanDependency 36 { 37 @Depends("jboss.test:service=AnotherDependedOn") AnotherDependedOnMBean mbean; 38 39 public void testNotNull() 40 { 41 if (mbean == null) throw new RuntimeException ("mbean field was not injected"); 42 } 43 44 } 45 | Popular Tags |