All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.andrewribeiro.ribrest.dao.CRUDCenterImpl Maven / Gradle / Ivy

Go to download

Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.

There is a newer version: 1.27.0
Show newest version
package br.com.andrewribeiro.ribrest.dao;

import br.com.andrewribeiro.ribrest.dao.abstracts.AbstractPersistenceCenter;
import br.com.andrewribeiro.ribrest.dao.interfaces.DAO;

/**
 *
 * @author Andrew Ribeiro
 */
public class CRUDCenterImpl extends AbstractPersistenceCenter {

    @Override
    public DAO create() {
        if (daoClass == null) {
            throw new RuntimeException("");
        }
        try {
            return (DAO) daoClass.newInstance();
        } catch (InstantiationException | IllegalAccessException ex) {
            throw new RuntimeException(ex.getMessage());
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy