Methods Summary |
---|
public NamingResources | getNamingResources()
return (this.resources);
|
public java.lang.Object | getProperty(java.lang.String name)Return a configured property.
return properties.get(name);
|
public java.util.Iterator | listProperties()List properties.
return properties.keySet().iterator();
|
public void | removeProperty(java.lang.String name)remove a configured property.
properties.remove(name);
|
void | setNamingResources(NamingResources resources)
this.resources = resources;
|
public void | setProperty(java.lang.String name, java.lang.Object value)Set a configured property.
properties.put(name, value);
|
public java.lang.String | toString()Return a String representation of this object.
StringBuffer sb = new StringBuffer("Transaction[");
sb.append("]");
return (sb.toString());
|