The {@link javax.sql.DataSource} interface follows the JavaBean design pattern,meaning the implementation class has properties that are accessed with getter methods and set using setter methods, and where the getter and setter methods follow the JavaBean naming convention (e.g., get
PropertyName() :
PropertyType and set
PropertyName(
PropertyType) : void
).
|
|