Package com.asakusafw.bulkloader.common

Examples of com.asakusafw.bulkloader.common.ImportTableLockType


            // import対象テーブルの分繰り返してファイル作成を行う。
            List<String> list = bean.getImportTargetTableList();
            for (String tableName : list) {
                ImportTargetTableBean targetTable = bean.getTargetTable(tableName);
                ImportTableLockType lockType = targetTable.getLockType();

                // ファイル名を生成
                File importFile = FileNameUtil.createImportFilePath(
                        bean.getTargetName(), bean.getJobflowId(), bean.getExecutionId(), tableName);
View Full Code Here


        // Import対象テーブル毎に処理し、指定に応じてロックフラグを立てる
        List<String> list = bean.getImportTargetTableList();
        for (String tableName : list) {
            ImportTargetTableBean targetTable = bean.getTargetTable(tableName);
            ImportTableLockType lockType = targetTable.getLockType();
            ImportTableLockedOperation operation = targetTable.getLockedOperation();
            String serchCondition = targetTable.getSearchCondition();

            LOG.info("TG-IMPORTER-02009",
                    tableName, lockType, operation, serchCondition);
View Full Code Here

TOP

Related Classes of com.asakusafw.bulkloader.common.ImportTableLockType

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.