/*********************************************************************
* All Rights reserved,Copyright (c) K-Opticom
**********************************************************************
*＜プログラム内容＞
*   システム名      ：eo顧客基幹システム
*   モジュール名    ：JKKUpdSpMskmOtherOpCC
*   ソースファイル名：JKKUpdSpMskmOtherOpCC.java
*   作成者          ：富士通
*   日付            ：2017年04月27日
*＜機能概要＞
*   セキュリティパック申込他オプション更新CC
*＜修正履歴＞
*   バージョン  修正日       修正者      修正内容
*   v32.00.00   2017/04/27   FJ）池原    【ANK-3149-00-00】新セキュリティパック導入 新規作成
**********************************************************************/
package com.fujitsu.futurity.bp.custom.common;

import java.util.HashMap;
import com.fujitsu.futurity.bp.x21.bpm.db.SessionHandle;
import com.fujitsu.futurity.bp.x21.bpm.parameter.IRequestParameterReadWrite;

/**
 * セキュリティパック申込他オプション更新CC.
 * <br>
 * @author 富士通
 */
public class JKKUpdSpMskmOtherOpCC extends JKKUpdSpMskmOtherOpBaseCC
{
	/**
	 * 他オプションの更新を行う。
	 * <br>
	 * @param handle
	 * @param param
	 * @param fixedText
	 * @return リクエストパラメータ
	 * @throws Exception
	 */
	@SuppressWarnings("unchecked")
	public IRequestParameterReadWrite updOtherOp(SessionHandle handle, IRequestParameterReadWrite param, String fixedText) throws Exception, Throwable
	{
		HashMap<String, Object> inMap = (HashMap<String, Object>)param.getData(fixedText);
		if (inMap == null)
		{
			return param;
		}
		
		// 継承元の「他オプション更新（共通）」を呼び出す
		super.updOtherOpBase(handle, param, fixedText);
		
		return param;
	}
}

