Schnittstelle IDataWriter

Alle Superschnittstellen:
AutoCloseable, ChangeRequestable, Closeable, CloseStateRequestable, GroupCloseable, IChangeSaver, IResettableChangeSaver, Resettable
Alle bekannten Unterschnittstellen:
IDataAdapter, IDataAdapterAndSchemaReader
Alle bekannten Implementierungsklassen:
AbstractDataAdapter, AbstractDataAdapterAndSchemaReader, AbstractSqlDataAdapter, DataWriter, DataWriter, MsSqlDataAdapter, MsSqlDataAdapterAndSchemaReader, NodeDataAdapter, NodeDataAdapterAndSchemaReader

public interface IDataWriter extends IResettableChangeSaver
Version:
2021-09-19
Autor:
Silvan Wyss
  • Methodendetails

    • clearMultiReference

      void clearMultiReference(String tableName, String entityId, String multiReferenceColumnName)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiReferenceColumnName -
    • clearMultiValue

      void clearMultiValue(String tableName, String entityId, String multiValueColumnName)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiValueColumnName -
    • deleteEntity

      void deleteEntity(String tableName, EntityDeletionDto entity)
      Causes an error if the concerned entity was deleted or changed in the meanwhile.
      Parameter:
      tableName -
      entity -
    • deleteMultiBackReferenceEntry

      void deleteMultiBackReferenceEntry(String tableName, String entityId, String multiBackReferenceColumnId, String backReferencedEntityId)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiBackReferenceColumnId -
      backReferencedEntityId -
    • deleteMultiReferenceEntry

      void deleteMultiReferenceEntry(String tableName, String entityId, String multiRefereceColumnName, String referencedEntityId)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiRefereceColumnName -
      referencedEntityId -
    • deleteMultiValueEntry

      void deleteMultiValueEntry(String tableName, String entityId, String multiValueColumnName, String entry)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiValueColumnName -
      entry -
    • expectSchemaTimestamp

      void expectSchemaTimestamp(ITime schemaTimestamp)
      Will cause an error if the database does not have the given schema timestamp.
      Parameter:
      schemaTimestamp -
    • expectTableContainsEntity

      void expectTableContainsEntity(String tableName, String entityId)
      Will cause an error if the concerned table does not contain an entity with the given entityId. This method can be used to prevent from referencing an entity that was deleted in the meanwhile.
      Parameter:
      tableName -
      entityId -
    • insertEntity

      void insertEntity(String tableName, EntityCreationDto newEntity)
      Inserts the given newEntity into the table with the given tableName.
      Parameter:
      tableName -
      newEntity -
    • insertMultiBackReferenceEntry

      void insertMultiBackReferenceEntry(String tableName, String entityId, String multiBackReferenceColumnId, String backReferencedEntityId)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiBackReferenceColumnId -
      backReferencedEntityId -
    • insertMultiReferenceEntry

      void insertMultiReferenceEntry(MultiReferenceEntryDto multiReferenceEntry)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      multiReferenceEntry -
    • insertMultiValueEntry

      void insertMultiValueEntry(String tableName, String entityId, String multiValueColumnName, String entry)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityId -
      multiValueColumnName -
      entry -
    • updateEntity

      void updateEntity(String tableName, EntityUpdateDto entityUpdate)
      This method does not validate that the concerned entity was not changed in the meanwhile.
      Parameter:
      tableName -
      entityUpdate -