Package | Description |
---|---|
nablarch.fw.action |
業務処理を実装する際に利用できる、アクションハンドラの共通基底クラス
(テンプレート)を格納するパッケージ。
|
nablarch.fw.launcher |
アプリケーションが動作するJavaプロセスの起動とフレームワークの初期化を行う
ランチャーに関連するモジュールを収めたパッケージ。
|
nablarch.fw.launcher.logging |
nablarch.fw.launcher.Mainから出力するためのログメッセージをフォーマットする機能を提供する。
|
nablarch.fw.messaging.action |
応答なし電文を受送信するアクションを提供する。
|
Modifier and Type | Method and Description |
---|---|
protected void |
BatchActionBase.initialize(CommandLine command,
ExecutionContext context)
実行管理ハンドラ(
ExecutionHandler )の本処理開始前に一度だけ実行される。
デフォルトでは何もしない。
必要に応じてオーバライドすること。 |
void |
BatchActionBase.preExecution(CommandLine commandLine,
ExecutionContext context) |
Modifier and Type | Field and Description |
---|---|
protected CommandLine |
GenericLauncher.commandLine
コマンドライン引数
|
Modifier and Type | Method and Description |
---|---|
CommandLine |
CommandLine.setParamMap(java.util.Map opts)
コマンドラインオプションのMapを設定する。
|
CommandLine |
CommandLine.setRequestPath(java.lang.String requestPath) |
Modifier and Type | Method and Description |
---|---|
static int |
Main.execute(CommandLine commandLine)
バッチを実行する。
#handle(CommandLine, ExecutionContext) に処理を委譲して結果を返す。 |
void |
ProcessLifecycle.setCommandLine(CommandLine commandLine)
コマンドライン引数を設定する。
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
LauncherLogFormatter.getStartLogMsg(CommandLine commandLine)
開始ログを生成する。
LauncherLogFormatter.getStartLogFormat() から取得したログフォーマットに従いログメッセージ生成を行う。 |
Modifier and Type | Method and Description |
---|---|
protected void |
AsyncMessageSendAction.initialize(CommandLine command,
ExecutionContext context)
初期処理を行う。
起動引数から送信対象のメッセージのリクエストIDを取得し、保持する。
|