+

Search Tips   |   Advanced Search

UpdateVault.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<!--
 =================================================================
 * Licensed Materials - Property of IBM
 * (c) Copyright IBM Corp. 2003, 2006.  All rights reserved.
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM
 * Corp.
 *
 * DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
 * sample code created by IBM Corporation.  This sample code is
 * not part of any standard or IBM product and is provided to you
 * solely for the purpose of assisting you in the development of
 * your applications.  The code is provided "AS IS", without
 * warranty of any kind.  IBM shall not be liable for any damages
 * arising out of your use of the sample code, even if they have
 * been advised of the possibility of such damages.
 *
 =================================================================
-->

<request 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:noNamespaceSchemaLocation="PortalConfig_1.4.xsd"
    type="update" create-oids="true">
    
    <!-- Sample for updating the credential vault. This script creates a new segment containing one slot in the portal
         credential vault.
         The credentials (userid and password pairs) that are stored in the vault cannot be accessed using the XML configuration
         interface. You can only set the credentials using the administration portlets for the credential vault. -->
    <portal action="locate">
        <credential-segment action="update" adapter-type="default" name="CorporateSegment" user-mapped="false">
            <description>Segment containing credentials for corporate backends</description>
            <credential-slot action="update" name="CorporateFtpServer" active="false" system="true" resource="none" secrettype="userid-password">
                <localedata locale="en">
                    <description>Credentials for accessing the Corporate FTP server</description>
                    <keywords>FTP Backend Corporate</keywords>
                </localedata>
            </credential-slot>
        </credential-segment>
    </portal>
</request>