Interface ActorMetadataRepository

All Superinterfaces:
org.springframework.data.repository.PagingAndSortingRepository<ActorMetadata, Long>, org.springframework.data.repository.Repository<ActorMetadata, Long>

@Table(name="user_metadata") public interface ActorMetadataRepository extends org.springframework.data.repository.PagingAndSortingRepository<ActorMetadata, Long>
Fetches/saves ActorMetadata from/to the user_metadata database table.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(@NonNull ActorMetadata metadata)
    Removes the given ActorMetadata from the database table.
    void
    save(@NonNull ActorMetadata metadata)
    Stores the given ActorMetadata in the database table.

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll, findAll
  • Method Details

    • save

      void save(@NonNull @NonNull ActorMetadata metadata)
      Stores the given ActorMetadata in the database table.
      Parameters:
      metadata - The ActorMetadata that shall be stored permanently.
    • delete

      void delete(@NonNull @NonNull ActorMetadata metadata)
      Removes the given ActorMetadata from the database table.
      Parameters:
      metadata - The ActorMetadata that shall no longer be stored in the database.