Interface IDfSearchSource


public interface IDfSearchSource
Represents a source for executing a query. Query supports multiple sources of different types. Currently only types of SRC_TYPE_DOCBASE and SRC_TYPE_EXTERNAL are supported.
See Also:
  • Field Details

    • SRC_TYPE_UNDEFINED

      static final int SRC_TYPE_UNDEFINED
      Internal source type used to identify uninitialized instance.
      See Also:
    • SRC_TYPE_DOCBASE

      static final int SRC_TYPE_DOCBASE
      Source type of a Documentum repository.
      See Also:
    • SRC_TYPE_EXTERNAL

      static final int SRC_TYPE_EXTERNAL
      External (non-repository) source type.
      See Also:
    • SRC_TYPE_DEFAULT

      static final int SRC_TYPE_DEFAULT
      Internal default source type (repository).
      See Also:
    • CAP_LOGICAL_OR_EXPR_SET

      static final String CAP_LOGICAL_OR_EXPR_SET
      Supports logical OR operation between expressions of a set.
      See Also:
    • CAP_HIDDEN_OBJ

      static final String CAP_HIDDEN_OBJ
      Supports searching hidden objects.
      See Also:
    • CAP_ALL_VERSIONS

      static final String CAP_ALL_VERSIONS
      Supports search for all versions of objects.
      See Also:
    • CAP_DUPLICATE_REMOVAL

      static final String CAP_DUPLICATE_REMOVAL
      Supports automatic duplicate removal.
      See Also:
    • CAP_FTDQL

      static final String CAP_FTDQL
      Supports FTDQL semantics.
      See Also:
    • CAP_TRY_FTDQL_FIRST

      static final String CAP_TRY_FTDQL_FIRST
      Supports TRY_FTDQL_FIRST Hint.
      See Also:
    • CAP_LOGIN

      static final String CAP_LOGIN
      Supports login.
      See Also:
    • CAP_USER_LOGIN

      static final String CAP_USER_LOGIN
      The user can provide credentials to authenticate to the source. If the source does not have this capability, then it should have the #CAP_CORPORATE_LOGIN capability. This capability can be cumulated with #CAP_CORPORATE_LOGIN. In this case, the user can either choose to provide credential or relies on the default one.
      See Also:
    • CAP_DEFAULT_LOGIN

      static final String CAP_DEFAULT_LOGIN
      The adapter to the source is setup with a default account (user login optional).
      See Also:
  • Method Details