001/* 002 * Copyright (c) 2017 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.fukurou.fileexec; 017 018import java.nio.file.Path; 019 020// import static org.opengion.fukurou.fileexec.AppliExec.GE72.*; // enum のショートカット 021import static org.opengion.fukurou.fileexec.AppliExec.GE72.*; // enum のショートカット // 8.5.4.2 (2024/01/12) 個別に記述 022 023/** 024 * RunExec_NONE は、RunExec インターフェースの実装クラスで、何もしません。 025 * 026 *<pre> 027 * GE72.RUNTYPEが、'0' の場合の処理を行います。 028 * 0:NONE // なにもしない 029 * 1:DBIN // DB入力 030 * 2:PLSQL // PL/SQLコール 031 * 3:BAT // BATファイルコール 032 * 4:JSP // JSPファイルコール(URLコネクション) 033 * 034 * 一次的に処理を止めたいときなどに使用します。 035 *</pre> 036 * 037 * @og.rev 7.2.5.0 (2020/06/01) 新規作成 038 * 039 * @version 7.2 040 * @author Kazuhiko Hasegawa 041 * @since JDK11, 042 */ 043public class RunExec_NONE implements RunExec { 044 045 /** 046 * デフォルトコンストラクター 047 * 048 * @og.rev 7.2.5.0 (2020/06/01) 新規作成 049 */ 050 public RunExec_NONE() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 051 052 /** 053 * 実際に処理を実行するプログラムのメソッド。 054 * 055 * @og.rev 7.2.5.0 (2020/06/01) 新規作成 056 * 057 * @param path 処理するファイルパス 058 * @param ge72Data GE72 テーブルデータ 059 * @return 処理件数(正は成功、マイナスは異常時の行番号) 060 */ 061 @Override // RunExec 062 public int exec( final Path path , final String[] ge72Data ) { 063 return 0; 064 } 065 066 /** 067 * 追加で呼び出す PL/SQL を実行します。 068 * 069 * これは、取り込み処理の実施結果にかかわらず、必ず呼ばれます。 070 * 071 * @og.rev 7.2.5.0 (2020/06/01) 新規作成 072 * 073 * @param path 処理するファイルパス 074 * @param ge72Data GE72 テーブルデータ 075 * @param fgtkan 取込完了フラグ(0:取込なし , 1:処理中 , 2:済 , 7:デーモンエラー , 8:アプリエラー) 076 * @param errMsg エラーメッセージ 077 */ 078 @Override // RunExec 079 public void endExec( final Path path , final String[] ge72Data , final String fgtkan , final String errMsg ) { 080// return ; 081 } 082}