Browse Source

Thin out project

Andrew Grant 4 months ago
parent
commit
32f0a711cd
32 changed files with 2 additions and 540 deletions
  1. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/census/Census.java
  2. 0 16
      src/main/java/scot/carricksoftware/grantswriter/domains/census/CensusEntry.java
  3. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/BirthCertificate.java
  4. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DeathCertificate.java
  5. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DivorceCertificate.java
  6. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/MarriageCertificate.java
  7. 0 14
      src/main/java/scot/carricksoftware/grantswriter/domains/images/Image.java
  8. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/images/PersonImage.java
  9. 0 14
      src/main/java/scot/carricksoftware/grantswriter/domains/images/PlaceImage.java
  10. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Country.java
  11. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Place.java
  12. 0 16
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Region.java
  13. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/text/DocumentText.java
  14. 0 15
      src/main/java/scot/carricksoftware/grantswriter/domains/text/PersonText.java
  15. 0 16
      src/main/java/scot/carricksoftware/grantswriter/domains/text/PlaceText.java
  16. 0 20
      src/main/java/scot/carricksoftware/grantswriter/repositories/ReadOnlyRepository.java
  17. 0 16
      src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusEntryRepository.java
  18. 0 16
      src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusRepository.java
  19. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/BirthCertificateRepository.java
  20. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DeathCertificateRepository.java
  21. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DivorceCertificateRepository.java
  22. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/MarriageCertificateRepository.java
  23. 0 14
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/ImageRepository.java
  24. 0 14
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/PersonImageRepository.java
  25. 0 14
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/PlaceImageRepository.java
  26. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/people/PersonRepository.java
  27. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/CountryRepository.java
  28. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/PlaceRepository.java
  29. 0 17
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/RegionRepository.java
  30. 0 33
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/DocumentTextRepository.java
  31. 0 33
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/PersonTextRepository.java
  32. 0 33
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/PlaceTextRepository.java

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/census/Census.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 19/03/2025, 01:34. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.census;
-
-import jakarta.persistence.*;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class Census extends BaseEntity {
-
-
-}

+ 0 - 16
src/main/java/scot/carricksoftware/grantswriter/domains/census/CensusEntry.java

@@ -1,16 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 19/03/2025, 01:34. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.census;
-
-import jakarta.persistence.*;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-
-@Entity
-public class CensusEntry extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/certificates/BirthCertificate.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.certificates;
-
-import jakarta.persistence.*;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class BirthCertificate extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DeathCertificate.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 24/03/2025, 10:07. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.certificates;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class DeathCertificate extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DivorceCertificate.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.certificates;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class DivorceCertificate extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/certificates/MarriageCertificate.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.certificates;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class MarriageCertificate extends BaseEntity {
-
-
-}

+ 0 - 14
src/main/java/scot/carricksoftware/grantswriter/domains/images/Image.java

@@ -1,14 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.images;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class Image extends BaseEntity {
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/images/PersonImage.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.images;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class PersonImage extends BaseEntity {
-
-
-}

+ 0 - 14
src/main/java/scot/carricksoftware/grantswriter/domains/images/PlaceImage.java

@@ -1,14 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 18/03/2025, 01:50. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.images;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class PlaceImage extends BaseEntity {
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/places/Country.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c)  02 Feb 2025, Andrew Grant of Carrick Software .
- * All rights reserved.
- */
-
-package scot.carricksoftware.grantswriter.domains.places;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class Country extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/places/Place.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c)  02 Feb 2025, Andrew Grant of Carrick Software .
- * All rights reserved.
- */
-
-package scot.carricksoftware.grantswriter.domains.places;
-
-
-import jakarta.persistence.*;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class Place extends BaseEntity {
-
-}

+ 0 - 16
src/main/java/scot/carricksoftware/grantswriter/domains/places/Region.java

@@ -1,16 +0,0 @@
-/*
- * Copyright (c)  02 Feb 2025, Andrew Grant of Carrick Software .
- * All rights reserved.
- */
-
-package scot.carricksoftware.grantswriter.domains.places;
-
-
-import jakarta.persistence.*;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class Region extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/text/DocumentText.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:24. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.text;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class DocumentText extends BaseEntity {
-
-
-}

+ 0 - 15
src/main/java/scot/carricksoftware/grantswriter/domains/text/PersonText.java

@@ -1,15 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:20. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.text;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-@Entity
-public class PersonText extends BaseEntity {
-
-
-}

+ 0 - 16
src/main/java/scot/carricksoftware/grantswriter/domains/text/PlaceText.java

@@ -1,16 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:22. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.domains.text;
-
-import jakarta.persistence.Entity;
-import scot.carricksoftware.grantswriter.BaseEntity;
-
-
-@Entity
-public class PlaceText extends BaseEntity {
-
-
-}

+ 0 - 20
src/main/java/scot/carricksoftware/grantswriter/repositories/ReadOnlyRepository.java

@@ -1,20 +0,0 @@
-/*
- * Copyright (c) 2025.  Andrew Grant Carrick Software. All rights reserved
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories;
-
-import org.springframework.data.repository.Repository;
-
-import java.util.List;
-import java.util.Optional;
-
-public interface ReadOnlyRepository<T, ID> extends Repository<T, ID> {
-
-    @SuppressWarnings("unused")
-    Optional<T> findById(ID id);
-    @SuppressWarnings("unused")
-    List<T> findAll();
-
-}

+ 0 - 16
src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusEntryRepository.java

@@ -1,16 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.census;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.census.CensusEntry;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface CensusEntryRepository extends ReadOnlyRepository<CensusEntry, Long> {
-
-}

+ 0 - 16
src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusRepository.java

@@ -1,16 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.census;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.census.Census;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface CensusRepository extends ReadOnlyRepository<Census, Long> {
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/BirthCertificateRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.certificates;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.certificates.BirthCertificate;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface BirthCertificateRepository extends ReadOnlyRepository<BirthCertificate, Long> {
-
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DeathCertificateRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.certificates;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.certificates.DeathCertificate;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface DeathCertificateRepository extends ReadOnlyRepository<DeathCertificate, Long> {
-
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DivorceCertificateRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.certificates;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.certificates.DivorceCertificate;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface DivorceCertificateRepository extends ReadOnlyRepository<DivorceCertificate, Long> {
-
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/MarriageCertificateRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.certificates;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.certificates.MarriageCertificate;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface MarriageCertificateRepository extends ReadOnlyRepository<MarriageCertificate, Long> {
-
-
-}

+ 0 - 14
src/main/java/scot/carricksoftware/grantswriter/repositories/images/ImageRepository.java

@@ -1,14 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 28/03/2025, 11:02. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.images;
-
-import scot.carricksoftware.grantswriter.domains.images.Image;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-public interface ImageRepository extends ReadOnlyRepository<Image, Long> {
-
-}

+ 0 - 14
src/main/java/scot/carricksoftware/grantswriter/repositories/images/PersonImageRepository.java

@@ -1,14 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 28/03/2025, 11:02. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.images;
-
-import scot.carricksoftware.grantswriter.domains.images.PersonImage;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-public interface PersonImageRepository extends ReadOnlyRepository<PersonImage, Long> {
-
-}

+ 0 - 14
src/main/java/scot/carricksoftware/grantswriter/repositories/images/PlaceImageRepository.java

@@ -1,14 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 28/03/2025, 11:02. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.images;
-
-import scot.carricksoftware.grantswriter.domains.images.PlaceImage;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-public interface PlaceImageRepository extends ReadOnlyRepository<PlaceImage, Long> {
-
-}

+ 2 - 2
src/main/java/scot/carricksoftware/grantswriter/repositories/people/PersonRepository.java

@@ -5,13 +5,13 @@
 
 
 package scot.carricksoftware.grantswriter.repositories.people;
 package scot.carricksoftware.grantswriter.repositories.people;
 
 
+import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
 import org.springframework.stereotype.Repository;
 import scot.carricksoftware.grantswriter.domains.people.Person;
 import scot.carricksoftware.grantswriter.domains.people.Person;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
 
 
 @SuppressWarnings("unused")
 @SuppressWarnings("unused")
 @Repository
 @Repository
-public interface PersonRepository extends ReadOnlyRepository<Person, Long> {
+public interface PersonRepository extends PagingAndSortingRepository<Person, Long> {
 
 
 
 
 
 

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/places/CountryRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.places;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.places.Country;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface CountryRepository extends ReadOnlyRepository<Country, Long> {
-
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/places/PlaceRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:48. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.places;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.places.Place;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface PlaceRepository extends ReadOnlyRepository<Place, Long> {
-
-
-}

+ 0 - 17
src/main/java/scot/carricksoftware/grantswriter/repositories/places/RegionRepository.java

@@ -1,17 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:48. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.places;
-
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.places.Region;
-import scot.carricksoftware.grantswriter.repositories.ReadOnlyRepository;
-
-@SuppressWarnings("unused")
-@Repository
-public interface RegionRepository extends ReadOnlyRepository<Region, Long> {
-
-
-}

+ 0 - 33
src/main/java/scot/carricksoftware/grantswriter/repositories/text/DocumentTextRepository.java

@@ -1,33 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.text;
-
-import org.springframework.data.repository.PagingAndSortingRepository;
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.text.DocumentText;
-
-import java.util.Optional;
-
-
-@SuppressWarnings("unused")
-@Repository
-public interface DocumentTextRepository extends PagingAndSortingRepository<DocumentText, Long> {
-
-    @SuppressWarnings("unused")
-    DocumentText save(DocumentText documentText);
-
-    @SuppressWarnings("unused")
-    long count();
-
-    @SuppressWarnings("unused")
-    void deleteById(Long id);
-
-    @SuppressWarnings("unused")
-    Optional<DocumentText> findById(Long id);
-
-    @SuppressWarnings("unused")
-    Iterable<DocumentText> findAll();
-}

+ 0 - 33
src/main/java/scot/carricksoftware/grantswriter/repositories/text/PersonTextRepository.java

@@ -1,33 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.text;
-
-import org.springframework.data.repository.PagingAndSortingRepository;
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.text.PersonText;
-
-import java.util.Optional;
-
-
-@SuppressWarnings("unused")
-@Repository
-public interface PersonTextRepository extends PagingAndSortingRepository<PersonText, Long> {
-
-    @SuppressWarnings("unused")
-    PersonText save(PersonText personText);
-
-    @SuppressWarnings("unused")
-    long count();
-
-    @SuppressWarnings("unused")
-    void deleteById(Long id);
-
-    @SuppressWarnings("unused")
-    Optional<PersonText> findById(Long id);
-
-    @SuppressWarnings("unused")
-    Iterable<PersonText> findAll();
-}

+ 0 - 33
src/main/java/scot/carricksoftware/grantswriter/repositories/text/PlaceTextRepository.java

@@ -1,33 +0,0 @@
-/*
- * Copyright (c) Andrew Grant of Carrick Software 11/03/2025, 19:47. All rights reserved.
- *
- */
-
-package scot.carricksoftware.grantswriter.repositories.text;
-
-import org.springframework.data.repository.PagingAndSortingRepository;
-import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grantswriter.domains.text.PlaceText;
-
-import java.util.Optional;
-
-
-@SuppressWarnings("unused")
-@Repository
-public interface PlaceTextRepository extends PagingAndSortingRepository<PlaceText, Long> {
-
-    @SuppressWarnings("unused")
-    PlaceText save(PlaceText placeText);
-
-    @SuppressWarnings("unused")
-    long count();
-
-    @SuppressWarnings("unused")
-    void deleteById(Long id);
-
-    @SuppressWarnings("unused")
-    Optional<PlaceText> findById(Long id);
-
-    @SuppressWarnings("unused")
-    Iterable<PlaceText> findAll();
-}