クラス CopyFile

すべての実装されたインタフェース:
CommonInterface, jp.ne.mki.wedge.run.interfaces.RuleEngineInterface

public class CopyFile extends AbstractCommon

ファイルコピー


ファイルをコピーします。


[I/O RECORD]

InputRecord OutputRecord
  1. コピー前ファイル名
  2. コピー後ファイル名

[RULE PARAMETER]

Parameter
導入されたバージョン:
1.1.0
バージョン:
1.0
  • フィールド詳細

    • beforeFileName

      jp.ne.mki.wedge.run.interfaces.DataInterface beforeFileName
    • afterFileName

      jp.ne.mki.wedge.run.interfaces.DataInterface afterFileName
  • コンストラクタの詳細

    • CopyFile

      public CopyFile()
  • メソッドの詳細

    • getIOParameter

      public int getIOParameter()
      IOパラメータ取得。execute の前に実行される。
      戻り値:
      int OK=処理続行、IO_ERROR=入出力レコードエラー、IO_ERROR_IN=入力レコードエラー、IO_ERROR_OUT=出力レコードエラー、 IO_ERROR_IO_MUST_SAME_COUNT=入力レコード数と出力レコー数の非合致エラー、IO_ERROR_PARAMETER=パラメータエラー、 IO_ERROR_EXECUTE_PARAMETER=実行リストパラメータエラー
    • execute

      public int execute() throws Throwable
      処理を実行します。
      戻り値:
       int BusinessRuleの戻り値を参照
      例外:
      Throwable
    • copy

      public void copy(File before, File after) throws Exception
      例外:
      Exception
    • exit

      public void exit()
      終了処理。保持していた変数などを開放する処理を記述します。
      execute の後に実行されます。
      正常終了・異常終了などに関わらず必ず実行されます。