FileNet Content Services
Java Connector v3.0

Uses of Interface
com.filenet.wcm.api.StoredSearches

Packages that use StoredSearches
com.filenet.wcm.api This package contains the classes and interfaces you can use to build Java-based applications that provide access to Content Services objects such as ObjectStore, Folder, and Document. 
 

Uses of StoredSearches in com.filenet.wcm.api
 

Methods in com.filenet.wcm.api that return StoredSearches
 StoredSearches ObjectStore.getStoredSearches(int[] objTypes, java.lang.String[] propNames)
          Deprecated. Use int[], String[] form of this method. Returns a collection of StoredSearch objects, including the properties of those objects as specified by their symbolic property names.

You can use this method to retrieve stored searches, search templates, or both. Identify what to retrieve in the objTypes parameter, which is an int array that can contain the following object types:

  • Stored searches (StoredSearch.TYPE_SEARCH)
  • Search templates (StoredSearch.TYPE_TEMPLATE)

Note: If the int array contains other BaseObject object types, they are ignored.

If the propNames parameter is null or an empty array, this method retrieves an initial set of hard-coded properties. However, because this set can vary from release to release, we recommend you specify the properties your application requires in the propNames array. An exception is thrown if the array contains property names that are invalid or not selectable.

 


FileNet Content Services
Java Connector v3.0