Example usage for org.springframework.jdbc.core.support JdbcDaoSupport subclass-usage

List of usage examples for org.springframework.jdbc.core.support JdbcDaoSupport subclass-usage

Introduction

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

Usage

From source file com.pivotal.gfxd.demo.loader.Loader.java

@Component("loader")
public class Loader extends JdbcDaoSupport implements ILoader {

    private static final Logger LOG = LoggerFactory.getLogger(Loader.class.getName());

    final int MINUTES_PER_INTERVAL = 5; // 5 minute unit slots

From source file br.com.autonomiccs.autonomic.plugin.common.daos.ClusterJdbcDao.java

/**
 * This class deals with operations regarding the 'cluster' table.
 */
public class ClusterJdbcDao extends JdbcDaoSupport {

    private String sqlGetClusterAdministrationStatus = "SELECT administration_status FROM cluster WHERE id=?;";

From source file sample.contact.dao.impl.ContactDaoImpl.java

/**
 * Base implementation of {@link ContactDao} that uses Spring's JdbcTemplate.
 *
 * @author Ben Alex
 * @author Luke Taylor
 */

From source file org.springframework.security.web.authentication.rememberme.JdbcTokenRepositoryImpl.java

/**
 * JDBC based persistent login token repository implementation.
 *
 * @author Luke Taylor
 * @since 2.0
 */

From source file sample.contact.dao.impl.MenuDaoImpl.java

/**
 * Base implementation of {@link MenuDao} that uses Spring's JdbcTemplate.
 *
 * @author Ben Alex
 * @author Luke Taylor
 */

From source file com.pactera.edg.am.metamanager.extractor.dao.impl.DeconstructorDaoImpl.java

public class DeconstructorDaoImpl extends JdbcDaoSupport implements IDeconstructorDao {

    private static final String separator = "/";

    public void deconstrunctor() {
        deleteBizData();

From source file at.plechinger.minigeocode.repository.GeocodeRepository.java

/**
 * Created by lukas on 01.05.15.
 */
@Repository
@Slf4j
public class GeocodeRepository extends JdbcDaoSupport {

From source file org.gbif.harvest.portal.synchronise.dao.jdbc.IdentifierRecordDaoImpl.java

/**
 * Pure JDBC implementation of the IdentifierRecordDao.
 */
public class IdentifierRecordDaoImpl extends JdbcDaoSupport implements IdentifierRecordDao {

    /**

From source file org.gbif.harvest.portal.synchronise.dao.jdbc.LinkRecordDaoImpl.java

/**
 * Pure JDBC implementation of the LinkRecordDao.
 */
public class LinkRecordDaoImpl extends JdbcDaoSupport implements LinkRecordDao {

    /**

From source file org.gbif.harvest.portal.synchronise.dao.jdbc.ImageRecordDaoImpl.java

/**
 * Pure JDBC implementation of the ImageRecordDao.
 */
public class ImageRecordDaoImpl extends JdbcDaoSupport implements ImageRecordDao {

    /**