Description Syntax Example setWebCenterIdStoreSearchConfig

10-194 Oracle Fusion Middleware WebLogic Scripting Tool Command Reference

10.21 WebCenter Identity Store

Use the commands listed in Table 10–29 to configure options for searching a WebCenter applications identity store.

10.21.1 setWebCenterIdStoreSearchConfig

Module: Oracle WebCenter Use with WLST: Online

10.21.1.1 Description

Modifies configuration options for searching a WebCenter applications identity store. Use these settings to optimize identity store searches for users and roles in a WebCenter application. Identity store search parameters are stored in adf-config.xml. If a search parameter is not specified, it is not modified.

10.21.1.2 Syntax

setWebCenterIdStoreSearchConfigappName,[narrowSearchTimeout, broadSearchTimeout, maxSearchFilters, maxFetchRecords, server, applicationVersion] Table 10–29 WebCenter Identity Store WLST Commands Use this command... To... Use with WLST... setWebCenterIdStoreSea rchConfig Modify configuration options for searching a WebCenter applicationss identity store. Online listWebCenterIdStoreSea rchConfig List current configuration options for searching a WebCenter applications identity store. Online Argument Definition appName Name of the WebCenter application in which to perform this operation. narrowSearchTimeout Optional. The maximum time allowed in ms for small, simple searches, such as fetching a single user from the identity store. The out-of-the-box default is 30000ms. broadSearchTimeout Optional. The maximum time allowed in ms to return large result sets, such as returning users and roles that match a name pattern. The out-of-the-box default is 60000. maxSearchFilters Optional. The number of search filters allowed for the WebCenter applications identity store. The maximum allowed, out-of-the-box, is 100. Some identity store searches are executed using search filters which are converted into LDAP search calls. If your associated LDAP server limits the search condition, you can set the maxSearchFilters property to match your LDAP server setting. Oracle WebCenter Custom WLST Commands 10-195

10.21.1.3 Example

The following example increases both identity store search timeouts. wls:weblogicserverConfigsetWebCenterIdStoreSearchConfigappName=webcenter, narrowSearchTimeout=60000, broadSearchTimeout=100000; The following example limits the maximum number of records returned to 100. wls:weblogicserverConfigsetWebCenterIdStoreSearchConfigappName=webcenter, maxFetchRecords=100;

10.21.2 listWebCenterIdStoreSearchConfig