プランのパラメータは、installPath だけです。
N1 SPS ブラウザインタフェースの「Application Deployment」セクションで「Components」をクリックします。
フォルダを、/com/sun/n1aa/GDS に変更します。
作成された GDS コンポーネントの「Details」リンクをクリックします。
stop プロシージャーのチェックボックスを選択します。
「Generate Plan With Checked Procedures」リンクをクリックします。
プラン名を、Stopgds-component-namePlan の形式で入力します。
gds-component-name は、「GDSResourceType を使用して GDS コンポーネントを作成する」の項で作成したコンポーネント名です。
XML テキストの <executionPlan> 要素で、属性名を Stopgds-component-namePlan に変更します。
<simpleSteps> 要素の前の、shutdownMode および forceStop パラメータを含む paramList 要素を削除します。
<simpleSteps> 要素の前に、プランのパラメータとして installPath を追加します。
たとえば、次のようなテキストを含めてプランのパラメータを挿入します。
<paramList> <param name="installPath" default="" prompt="Install path of the GDS component"></param> </paramList>
<call blockName='stop'> のあとにある <argList> の行を削除して、制御を停止する引数を削除します。
XML テキストの <installedComponent> 要素に、installPath=':[installPath]' 属性を追加します。
次に例を示します。
installPath を追加する前。
<call blockName='stop'> <installedComponent name='gds' versionOp='=' version='1.0' path='/com/sun/n1aa/GDS'></installedComponent> </call>
installPath を追加したあと。
<call blockName='stop'> <installedComponent name='gds' versionOp='=' version='1.0' path='/com/sun/n1aa/GDS' installPath=':[installPath]'></installedComponent> </call>
「Check In」をクリックします。
「Continue to Check In」をクリックします。