Class ProxyOperationsMappingConfig


  • public final class ProxyOperationsMappingConfig
    extends Object
    Provides methods for function names in a Tarantool instance or a Tarantool Cartridge role for CRUD operations.
    • Method Detail

      • getGetSchemaFunctionName

        public String getGetSchemaFunctionName()
        Get API function name for getting the spaces and indexes schema. The default value is ddl.get_schema. See the DDL module API for details on the desired schema metadata format.
        Returns:
        a callable API function name
      • getDeleteFunctionName

        public String getDeleteFunctionName()
        Get API function name for performing the delete operation. The default value is crud.delete.
        Returns:
        a callable API function name
      • getInsertFunctionName

        public String getInsertFunctionName()
        Get API function name for performing the insert operation. The default value is crud.insert.
        Returns:
        a callable API function name
      • getReplaceFunctionName

        public String getReplaceFunctionName()
        Get API function name for performing the replace operation. The default value is crud.replace.
        Returns:
        a callable API function name
      • getUpdateFunctionName

        public String getUpdateFunctionName()
        Get API function name for performing the update operation. The default value is crud.update.
        Returns:
        a callable API function name
      • getUpsertFunctionName

        public String getUpsertFunctionName()
        Get API function name for performing the upsert operation. The default value is crud.upsert.
        Returns:
        a callable API function name
      • getSelectFunctionName

        public String getSelectFunctionName()
        Get API function name for performing the select operation. The default value is crud.select.
        Returns:
        a callable API function name
      • getTruncateFunctionName

        public String getTruncateFunctionName()
        Get API function name for performing the select operation. The default value is crud.truncate.
        Returns:
        a callable API function name