1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 22 28 public interface ResourceEnvRef extends CommonDDBean, DescriptionInterface { 29 30 31 public static final String RESOURCE_ENV_REF_NAME = "ResourceEnvRefName"; public static final String RESOURCE_ENV_REF_TYPE = "ResourceEnvRefType"; 34 37 public void setResourceEnvRefName(String value); 38 41 public String getResourceEnvRefName(); 42 45 public void setResourceEnvRefType(String value); 46 49 public String getResourceEnvRefType(); 50 51 53 void setMappedName(String value) throws VersionNotSupportedException; 54 String getMappedName() throws VersionNotSupportedException; 55 void setInjectionTarget(int index, InjectionTarget valueInterface) throws VersionNotSupportedException; 56 InjectionTarget getInjectionTarget(int index) throws VersionNotSupportedException; 57 int sizeInjectionTarget() throws VersionNotSupportedException; 58 void setInjectionTarget(InjectionTarget[] value) throws VersionNotSupportedException; 59 InjectionTarget[] getInjectionTarget() throws VersionNotSupportedException; 60 int addInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 61 int removeInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 62 InjectionTarget newInjectionTarget() throws VersionNotSupportedException; 63 64 } 65 | Popular Tags |