/*********************************************************************
* All Rights reserved,Copyright (c) K-Opticom
**********************************************************************
*＜プログラム内容＞
*   システム名      ：eo顧客基幹システム
*   モジュール名    ：JKKOptPackAplyChkCC
*   ソースファイル名：JKKOptPackAplyChkCC.java
*   作成者          ：富士通
*   日付            ：2014年05月13日
*＜機能概要＞
*   登録部品
*＜修正履歴＞
*   バージョン  修正日       修正者      修正内容
*   v9.00.00    2014/05/13   FJ）中山    新規作成
*
**********************************************************************/
package com.fujitsu.futurity.bp.custom.common;

import com.fujitsu.futurity.bp.x21.bpm.db.SessionHandle;
import com.fujitsu.futurity.bp.x21.bpm.parameter.IRequestParameterReadWrite;
import com.fujitsu.futurity.bp.x21.cc.AbstractCommonComponent;


/**
 * オプションパック適用判定コモンコンポーネント部品の呼び出しを行う。
 * <br>
 * @author 富士通
 */
public class JKKOptPackAplyChkCC extends AbstractCommonComponent
{
	
	/**
	 * オプションパック適用判定処理
	 * <br/>
	 * @param handle セッションハンドル
	 * @param param リクエストパラメータ
	 * @param fixedText ユーザー固定文字列
	 * @return param リクエストパラメータ
	 * @throws Throwable
	 */
	public IRequestParameterReadWrite judgeOptPack(SessionHandle handle, IRequestParameterReadWrite param, String fixedText) throws Throwable
	{
		JKKOptPackAplyChkUtil obj = new JKKOptPackAplyChkUtil();
		
		obj.judgeOptPack(handle, param, fixedText);
		
		return param;
	}
}