Package com.ibm.wsspi.resource
Interface ResourceBinding
- 
 public interface ResourceBindingInformation about a resource binding.This interface is not intended to be implemented by clients. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBindingName()Returns the current binding name for the resource.java.lang.ObjectgetProperty(java.lang.String name)Returns a property value.java.util.Collection<java.lang.String>getPropertyNames()Returns an immutable collection of property names that will return a non-null value fromgetProperty(java.lang.String).java.lang.StringgetReferenceName()Returns the reference name, or null if this event is not for a reference.java.lang.StringgetTypeName()Returns the type of the resource name (for example,javax.sql.DataSource).voidsetBindingName(java.lang.String name)Sets the binding name for the resource.
 
- 
- 
- 
Method Detail- 
getReferenceNamejava.lang.String getReferenceName() Returns the reference name, or null if this event is not for a reference.
 - 
getTypeNamejava.lang.String getTypeName() Returns the type of the resource name (for example,javax.sql.DataSource).
 - 
getBindingNamejava.lang.String getBindingName() Returns the current binding name for the resource.
 - 
getPropertyjava.lang.Object getProperty(java.lang.String name) Returns a property value. The list of property names varies depending on the type and declaration of the resource.- Parameters:
- name- the property name
- Returns:
- the property value, or null if not found
- See Also:
- getPropertyNames()
 
 - 
getPropertyNamesjava.util.Collection<java.lang.String> getPropertyNames() Returns an immutable collection of property names that will return a non-null value fromgetProperty(java.lang.String).- Returns:
- a non-null immutable collection of property names
 
 - 
setBindingNamevoid setBindingName(java.lang.String name) Sets the binding name for the resource.
 
- 
 
-