AbstractDBConfig ================ .. java:package:: org.motechproject.config.core.domain :noindex: .. java:type:: public abstract class AbstractDBConfig This abstract class encapsulates the database configuration, composed of as db url, username and password. Constructors ------------ AbstractDBConfig ^^^^^^^^^^^^^^^^ .. java:constructor:: public AbstractDBConfig(String url, String driver, String username, String password) :outertype: AbstractDBConfig :param url: :param driver: :param username: :param password: Methods ------- equals ^^^^^^ .. java:method:: @Override public boolean equals(Object o) :outertype: AbstractDBConfig getDriver ^^^^^^^^^ .. java:method:: public String getDriver() :outertype: AbstractDBConfig getPassword ^^^^^^^^^^^ .. java:method:: public String getPassword() :outertype: AbstractDBConfig getUrl ^^^^^^ .. java:method:: public String getUrl() :outertype: AbstractDBConfig getUsername ^^^^^^^^^^^ .. java:method:: public String getUsername() :outertype: AbstractDBConfig hashCode ^^^^^^^^ .. java:method:: @Override public int hashCode() :outertype: AbstractDBConfig toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: AbstractDBConfig