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

com.zhuang.data.handler.DbExecuteHandlerFactory Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.zhuang.data.handler;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by zhuang on 3/23/2018.
 */
public class DbExecuteHandlerFactory {

    private static List dbExecutionHandlers = new ArrayList();

    public static List getDbExecuteHandlers() {
        return dbExecutionHandlers;
    }

    public static void addDbExecutionHandler(DbExecutionHandler dbExecutionHandler) {
        dbExecutionHandlers.add(dbExecutionHandler);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy