Interface JdbcDao

All Known Implementing Classes:
AbstractJdbcDao, BaseJdbcBatchableDao, BaseJdbcGenericDao, JdbcGeneralNodeDatumDao, JdbcSecurityTokenDao

public interface JdbcDao
API for JDBC-based DAO implemtnations.
Version:
1.0
Author:
matt
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.context.MessageSource
    Get a MessageSource to resolve messages with related to this DAO.
    Get the database schema name this DAO is working with.
    Get the primary database table name this DAO is working with.
    Get the database table names this DAO is working with.
  • Method Details

    • getSchemaName

      String getSchemaName()
      Get the database schema name this DAO is working with.
      Returns:
      database schema name
    • getTableName

      String getTableName()
      Get the primary database table name this DAO is working with.
      Returns:
      primary database table name
    • getTableNames

      String[] getTableNames()
      Get the database table names this DAO is working with.

      If a DAO manages more than one table, this should return all the table names.

      Returns:
      database table name
    • getMessageSource

      org.springframework.context.MessageSource getMessageSource()
      Get a MessageSource to resolve messages with related to this DAO.
      Returns:
      message source