/**
- * The description of this Context Element.
+ * The description of this resource.
*/
private String description = null;
/**
- * The name of this context Element.
+ * The name of this resource.
*/
private String name = null;
+ @Override
public String getName() {
return (this.name);
}
/**
- * The name of the EJB bean implementation class.
+ * The name of the resource implementation class.
*/
private String type = null;
}
/**
- * remove a configured property.
+ * Remove a configured property.
*/
public void removeProperty(String name) {
properties.remove(name);
private List<InjectionTarget> injectionTargets = new ArrayList<InjectionTarget>();
+ @Override
public void addInjectionTarget(String injectionTargetName, String jndiName) {
InjectionTarget target = new InjectionTarget(injectionTargetName, jndiName);
injectionTargets.add(target);
}
+ @Override
public List<InjectionTarget> getInjectionTargets() {
return injectionTargets;
}