Example usage for org.springframework.jdbc.core.namedparam NamedParameterJdbcDaoSupport subclass-usage

List of usage examples for org.springframework.jdbc.core.namedparam NamedParameterJdbcDaoSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.core.namedparam NamedParameterJdbcDaoSupport subclass-usage.

Usage

From source file com.epam.catgenome.dao.gene.GeneFileDao.java

/**
 * Source:      GeneFileDao
 * Created:     04.12.15, 18:52
 * Project:     CATGenome Browser
 * Make:        IntelliJ IDEA 14.1.4, JDK 1.8
 *

From source file org.mulima.internal.freedb.FreeDbJdbcDaoImpl.java

/**
 * Provides access to a JDBC source containing FreeDb information.
 * @author Andrew Oberstar
 * @since 0.1.0
 */
public class FreeDbJdbcDaoImpl extends NamedParameterJdbcDaoSupport implements FreeDbDao {

From source file com.epam.catgenome.dao.DaoHelper.java

/**
 * Source:      DaoHelper.java
 * Created:     10/29/15, 7:24 PM
 * Project:     CATGenome Browser
 * Make:        IntelliJ IDEA 14.1.4, JDK 1.8
 * <p>

From source file net.turnbig.jdbcx.JdbcxDaoSupport.java

/**
 * Extends Named-Query-JDBC-Template with more friendly API
 * 
 * @author Woo Cupid
 * @date 2016121
 * @version $Revision$

From source file com.github.inspektr.audit.support.JdbcAuditTrailManager.java

/**
 * <p>Implementation of {@link com.github.inspektr.audit.AuditTrailManager} to persist the
 * audit trail to the  AUDIT_TRAIL table in the Oracle data base.
 * </p>
 * <pre>
 * CREATE TABLE COM_AUDIT_TRAIL

From source file org.apereo.inspektr.audit.support.JdbcAuditTrailManager.java

/**
 * <p>Implementation of {@link AuditTrailManager} to persist the
 * audit trail to the  AUDIT_TRAIL table in the Oracle data base.
 * </p>
 * <pre>
 * CREATE TABLE COM_AUDIT_TRAIL

From source file com.epam.catgenome.dao.vcf.VcfFileDao.java

/**
 * <p>
 * {@code VcfFileDao} is a DAO component, that handles database interaction with VCF file metadata.
 * </p>
 */
public class VcfFileDao extends NamedParameterJdbcDaoSupport {

From source file org.owasp.proxy.http.dao.JdbcMessageDAO.java

public class JdbcMessageDAO extends NamedParameterJdbcDaoSupport implements MessageDAO {

    private static final String SSL = "ssl";
    private static final String PORT = "port";
    private static final String HOST = "host";
    private static final String ID = "id";

From source file com.epam.catgenome.dao.reference.ReferenceGenomeDao.java

/**
 * {@code ReferenceGenomeDao} represents DAO which provides different calls to support
 * metadata management for reference genomes, e.g. save new entities, retrieves reference
 * genomes and corresponded chromosomes matched different conditions etc.
 */
public class ReferenceGenomeDao extends NamedParameterJdbcDaoSupport {

From source file com.epam.catgenome.dao.BiologicalDataItemDao.java

/**
 * Source:      BiologicalDataItemDao
 * Created:     17.12.15, 13:12
 * Project:     CATGenome Browser
 * Make:        IntelliJ IDEA 14.1.4, JDK 1.8
 *