search_getFolderEntries

Obtains information about the entries that match the specified search query.

Syntax

public String search_getFolderEntries( String accessToken, String query, int offset, int maxResults );

Description

The search_getFolderEntries operation obtains information about the entries matching the specified search query. Because the list of each result can be lengthy, this operation lets you make multiple calls, receiving a subset of the search results each time.

Parameters and Return Value

accessToken

Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.

query

A search query represented in XML.

offset

An integer indicating at which result you want to begin receiving information. The first result is numbered 0.

maxResults

An integer indicating the number of results you want returned. The value of -1 indicates unlimited.

return_value

A FolderEntryCollection Java object containing information about the entries contained within the folder.

See Also