com.bea.apps.groupspace.search.controls
Annotation Type GsFullTextSearchControl.SearchParams


@Target(value={FIELD,TYPE})
@Retention(value=RUNTIME)
public static @interface GsFullTextSearchControl.SearchParams

Set the defaults for search parameters


Annotation Type Optional Member Summary
 int batchLoadingSize
          Number of Nodes to load in memory per fetch when converting search results to ContentBase beans
 Class beanType
          This Class must extend ContentBase and designates the particular content type you wish to search.
 boolean includeFolders
          Option to include folders in the search
 int limitRelevanceScore
          Return only the top N search results whose relevance weights are above this
 boolean loadAllIntoMemory
          Option to load all search results into memory.
 int maxMemorySortedResults
          Limit search results sorted in memory to top N results.
 int maxResults
          Limit search results to the top N results
 String objectClassName
          Limit search to this object class
 int pageSize
          Partition the search results into pages of this size
 String repositoryName
          If searching only a single repository, specify the repository name
 

repositoryName

public abstract String repositoryName
If searching only a single repository, specify the repository name

Default
"Community_Repository"

objectClassName

public abstract String objectClassName
Limit search to this object class

Default
"COMMUNITY_CONTENT"

maxResults

public abstract int maxResults
Limit search results to the top N results

Default
1000

maxMemorySortedResults

public abstract int maxMemorySortedResults
Limit search results sorted in memory to top N results. Max allowed is 500

Default
200

pageSize

public abstract int pageSize
Partition the search results into pages of this size

Default
10

loadAllIntoMemory

public abstract boolean loadAllIntoMemory
Option to load all search results into memory.

Default
false

limitRelevanceScore

public abstract int limitRelevanceScore
Return only the top N search results whose relevance weights are above this

Default
50

beanType

public abstract Class beanType
This Class must extend ContentBase and designates the particular content type you wish to search. For example, if you want to search only Issues, set this to Issues.class

Default
com.bea.apps.groupspace.content.CommunityContent.class

batchLoadingSize

public abstract int batchLoadingSize
Number of Nodes to load in memory per fetch when converting search results to ContentBase beans

Default
10

includeFolders

public abstract boolean includeFolders
Option to include folders in the search

Default
false


Copyright © 2006 BEA Systems, Inc. All Rights Reserved