Now, you can save your searches to easily repeat search requests.
Saving a search is as easy as 1-2-3:
1. Perform a search. The Search Results page opens. 2. Optionally, choose filters or update your search term. 3. Click Save Search.
You can access saved searches from a list next to the Search field that appears on every page. Saved searches store the search term and any search filters that you apply.
Your second task is to create the actual custom functions, each of which implements the IAeFunction interface. These also expose one single public method:
call(IAeFunctionExecutionContext, List)
; it performs the function's task that you create. The function's argument list (if any) is passed to the call method using the
List
argument. This function may optionally use the function execution
IAeFunctionExecutionContext
as needed. Individual custom functions should throw
AeFunctionCallException
, constructed to contain the root exception message, if they encounter a problem that prevents them from finishing their task.