1 23 24 package com.sun.enterprise.deployment.types; 25 26 import com.sun.enterprise.deployment.InjectionCapable; 27 import com.sun.enterprise.deployment.BundleDescriptor; 28 29 33 public interface EntityManagerFactoryReference extends NamedInformation, 34 InjectionCapable { 35 36 40 public void setUnitName(String unitName); 41 42 43 47 public String getUnitName(); 48 49 53 public void setReferringBundleDescriptor(BundleDescriptor referringBundle); 54 55 59 public BundleDescriptor getReferringBundleDescriptor(); 60 61 62 } 63 64 | Popular Tags |