You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit addresses the feedback provided by javier-godoy on PR #103:
- Updated Javadoc for `AttributeConstraint.java` to clarify it as a
specialization of `Constraint`.
- Updated Javadoc for `ConstraintTransformerJpaImpl.java` and
`ConstraintSpecification.java` to use `{@code}` for supertypes and
implemented interfaces, as per FlowingCode development conventions.
- Added author information to the License section in README.md.
Copy file name to clipboardExpand all lines: backend-core-business-spring-impl/src/main/java/com/flowingcode/backendcore/service/ConstraintSpecification.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@
14
14
importlombok.RequiredArgsConstructor;
15
15
16
16
/**
17
-
* Spring Data JPA {@link org.springframework.data.jpa.domain.Specification} that applies a model {@link com.flowingcode.backendcore.model.Constraint}.
17
+
* Spring Data JPA {@code Specification} that applies a model
Copy file name to clipboardExpand all lines: backend-core-data-impl/src/main/java/com/flowingcode/backendcore/dao/jpa/ConstraintTransformerJpaImpl.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,8 @@
45
45
importlombok.RequiredArgsConstructor;
46
46
47
47
/**
48
-
* JPA implementation of {@link com.flowingcode.backendcore.model.ConstraintTransformer} for converting model constraints into JPA {@link jakarta.persistence.criteria.Predicate} instances.
48
+
* JPA implementation of {@code ConstraintTransformer} for converting
49
+
* model constraints into JPA {@code Predicate} instances.
0 commit comments