Class VelocityMailProcessor
java.lang.Object
nablarch.integration.mail.velocity.VelocityMailProcessor
- All Implemented Interfaces:
TemplateEngineMailProcessor
Velocityを使用する
TemplateEngineMailProcessor
の実装クラス。-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected org.apache.velocity.context.Context
createContext
(Map<String, Object> variables) Context
を作成する。テンプレートIDから取得されたテンプレートと変数をマージして、その結果を返す。void
setDelimiter
(String delimiter) 件名と本文を分けるデリミタを設定する。void
setVelocityEngine
(org.apache.velocity.app.VelocityEngine velocityEngine) VelocityのエントリーポイントとなるVelocityEngine
を設定する。
-
Constructor Details
-
VelocityMailProcessor
public VelocityMailProcessor()
-
-
Method Details
-
process
public TemplateEngineProcessedResult process(String templateId, String lang, Map<String, Object> variables) テンプレートIDから取得されたテンプレートと変数をマージして、その結果を返す。テンプレートの検索は
VelocityEngine.getTemplate(String)
が使われる。 テンプレートと変数のマージはTemplate.merge(Context, Writer)
が使われる。※この実装ではテンプレートの検索が多言語対応していないため、第二引数の言語は使用されない。
- Specified by:
process
in interfaceTemplateEngineMailProcessor
- Parameters:
templateId
- テンプレートIDlang
- 言語(null
でもよい)variables
- 変数- Returns:
- 処理結果
- See Also:
-
VelocityEngine.getTemplate(String)
Template.merge(Context, Writer)
-
createContext
Context
を作成する。- Parameters:
variables
-process(String, String, Map)
に渡された変数- Returns:
Context
のインスタンス
-
setVelocityEngine
public void setVelocityEngine(org.apache.velocity.app.VelocityEngine velocityEngine) VelocityのエントリーポイントとなるVelocityEngine
を設定する。- Parameters:
velocityEngine
- Velocityのエンジン
-
setDelimiter
件名と本文を分けるデリミタを設定する。なにも設定されていなければ
デフォルトのデリミタ
が使用される。- Parameters:
delimiter
- 件名と本文を分けるデリミタ
-