Package com.celum.dbtool.step

Examples of com.celum.dbtool.step.StepType


    /**
     * execute step via concrete executor
     */
    private void executeViaExecutor(DbStep step)
    {
        StepType type = step.getType();
        for (Executor executor : executors) {
            if (executor.getType() == type) {
                executor.execute(step);
                return;
            }
        }
        throw new DbException("Unsupported type:" + type.toString() + ". No Executor for this type.");
    }
View Full Code Here


    /**
     * execute step via concrete executor
     */
    private void executeViaExecutor(DbStep step)
    {
        StepType type = step.getType();
        for (Executor executor : executors) {
            if (executor.getType() == type) {
                executor.execute(step);
                return;
            }
        }
        throw new DbException("Unsupported type:" + type.toString() + ". No Executor for this type.");
    }
View Full Code Here

TOP

Related Classes of com.celum.dbtool.step.StepType

Copyright © 2018 www.massapicom. 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.