1 23 package com.sun.enterprise.deployment; 24 25 import java.lang.reflect.Method ; 26 import java.lang.reflect.Field ; 27 import java.util.Set ; 28 29 35 public interface InjectionCapable { 36 37 44 public boolean isInjectable(); 45 46 49 public Set <InjectionTarget> getInjectionTargets(); 50 51 54 public void addInjectionTarget(InjectionTarget target); 55 56 60 public String getComponentEnvName(); 61 62 65 public String getInjectResourceType(); 66 public void setInjectResourceType(String resourceType); 67 68 } 69 | Popular Tags |