Skip to content

Commit

Permalink
spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSebastian committed Apr 15, 2024
1 parent 616c5d2 commit f7babcd
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
/**
* Provides a Repository for {@link TheEntity}. This Repository is exported as a REST resource.
* <p>
* The Repository handles CRUD Operations. Every Operation is secured and takes care of the tenancy. For specific Documentation on how the generated REST point
* The Repository handles CRUD Operations. Every Operation is secured and takes care of the tenancy.
* For specific Documentation on how the generated REST point
* behaves, please consider the Spring Data Rest Reference
* <a href="http://docs.spring.io/spring-data/rest/docs/current/reference/html/">here</a>.
* </p>
Expand All @@ -42,7 +43,8 @@ public interface TheEntityRepository extends CrudRepository<TheEntity, UUID> { /
/**
* Create or update a {@link TheEntity}.
* <p>
* If the id already exists, the {@link TheEntity} will be overridden, hence update. If the id does not already exist, a new {@link TheEntity} will be
* If the id already exists, the {@link TheEntity} will be overridden, hence update. If the id does
* not already exist, a new {@link TheEntity} will be
* created, hence create.
* </p>
*
Expand All @@ -57,7 +59,8 @@ public interface TheEntityRepository extends CrudRepository<TheEntity, UUID> { /
/**
* Create or update a collection of {@link TheEntity}.
* <p>
* If the id already exists, the {@link TheEntity}s will be overridden, hence update. If the id does not already exist, the new {@link TheEntity}s will be
* If the id already exists, the {@link TheEntity}s will be overridden, hence update. If the id does
* not already exist, the new {@link TheEntity}s will be
* created, hence create.
* </p>
*
Expand Down

0 comments on commit f7babcd

Please sign in to comment.