Member Junction
    Preparing search index...

    Abstract base class for search providers. Subclasses must be registered with @RegisterClass(BaseSearchProvider, 'DriverClassName') to be discoverable by the SearchEngine.

    Lifecycle:

    1. SearchEngine loads active SearchProvider records from the database
    2. For each record, ClassFactory creates an instance using DriverClass
    3. Initialize() is called with the provider's config from the DB record
    4. CheckAvailability() is called to verify the provider is operational
    5. If IsAvailable(), the provider participates in searches

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    config: SearchProviderConfig = null

    Config from the SearchProvider metadata record, set during Initialize()

    SourceType: SearchSource = 'vector'

    Which search source this provider represents

    Accessors

    Methods

    • Enumerate every search provider currently registered with ClassFactory under BaseSearchProvider. Designed for the SearchScope form's provider dropdown (P5.5) — populates the dropdown from this single call rather than hardcoding a list, so any ClassFactory-registered provider (including third-party ones) shows up automatically.

      Each entry includes the driver-class registration key (writes into SearchProvider.DriverClass) and the SourceType the provider implements. Sorted by DriverClass for stable UI ordering.

      Returns RegisteredSearchProviderInfo[]