im.dadoo.cas.server.dao.BaseDao.java Source code

Java tutorial

Introduction

Here is the source code for im.dadoo.cas.server.dao.BaseDao.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package im.dadoo.cas.server.dao;

import com.google.common.base.Optional;
import java.io.Serializable;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;

/**
 *
 * @author codekitten
 * @param <T>
 */
public class BaseDao<T> {

    @Resource
    protected NamedParameterJdbcTemplate jdbcTemplate;

    protected Class<T> c;

    public BaseDao(Class<T> c) {
        this.c = c;
    }

    public T add(T obj) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public T update(T obj) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public void deleteById(Serializable id) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public void deleteAll() {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public Optional<T> findById(Serializable id) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public List<T> list() {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public List<T> list(Integer pagecount, Integer pagesize) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public Serializable size() {
        throw new UnsupportedOperationException("Not supported yet.");
    }
}