Package dao

Source Code of dao.DAOFactory

package dao;

import dao.impl.HSQLDBDAOFactory;

public abstract class DAOFactory {
    public static final int HSQLDB = 1;

    public abstract IFlightDAO getFlightDAO();
    public abstract IAirportDAO getAirportDAO();
    public abstract ICountryDAO getCountryDAO();

    public static DAOFactory getDAOFactory(int whichFactory) {

    switch (whichFactory) {
        case HSQLDB:
            return new HSQLDBDAOFactory();
        default:
            return null;
        }
    }

}
TOP

Related Classes of dao.DAOFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.