This is a markOnly task.
The installPath is the only plan parameter.
In the Application Deployment section of the N1 SPS browser interface, click Components.
Change the folder to /com/sun/n1aa/GDS.
Click on the details link of the created GDS component.
Select the check box for the uninstall:default procedure.
You can also select the check box for the uninstall:markOnly procedure.
Click on the Generate Plan With Checked Procedures link.
Enter the name of the plan as Deletegds-component-namePlan.
Where gds-component-name is the name of the component created in section How to Create a GDS Component Using the GDSResourceType.
In the XML text <executionPlan> element, change the name of the attribute to Deletegds-component-namePlan.
Before the <simpleSteps> element, add the installPath as the plan parameter.
For example, include the following text to insert the plan parameter:
<paramList> <param name="installPath" default="" prompt="Install path of the GDS component"></param> </paramList>
Add the installPath=':[installPath]' attribute to the <installedComponent> element in the XML text.
For example:
Before adding the installPath.
<uninstall blockName='default'> <installedComponent name='gds' versionOp='=' version='1.0' path='/com/sun/n1aa/GDS'></installedComponent> </uninstall>
After adding the installPath.
<uninstall blockName='default'> <installedComponent name='gds' versionOp='=' version='1.0' path='/com/sun/n1aa/GDS' installPath=':[installPath]'></installedComponent> </uninstall>
Click Check In.
Click Continue to Check In.