Skip to content

Commit f5a7313

Browse files
christophstroblmp911de
authored andcommitted
Add contract annotations to public API.
See #3745 Original pull request: #3781
1 parent 623f564 commit f5a7313

9 files changed

+42
-15
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/convert/QueryByExamplePredicateBuilder.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
import org.springframework.data.jpa.repository.query.EscapeCharacter;
4444
import org.springframework.data.support.ExampleMatcherAccessor;
4545
import org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper;
46+
import org.springframework.lang.Contract;
4647
import org.springframework.util.Assert;
4748
import org.springframework.util.ClassUtils;
4849
import org.springframework.util.ObjectUtils;
@@ -242,7 +243,6 @@ private static class PathNode {
242243

243244
String name;
244245
@Nullable PathNode parent;
245-
List<PathNode> siblings = new ArrayList<>();
246246
@Nullable Object value;
247247

248248
PathNode(String edge, @Nullable PathNode parent, @Nullable Object value) {
@@ -254,9 +254,7 @@ private static class PathNode {
254254

255255
PathNode add(String attribute, @Nullable Object value) {
256256

257-
PathNode node = new PathNode(attribute, this, value);
258-
siblings.add(node);
259-
return node;
257+
return new PathNode(attribute, this, value);
260258
}
261259

262260
boolean spansCycle() {

spring-data-jpa/src/main/java/org/springframework/data/jpa/domain/AbstractAuditable.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import java.time.ZoneId;
2525
import java.util.Optional;
2626

27+
import org.jspecify.annotations.NullUnmarked;
2728
import org.springframework.data.domain.Auditable;
2829

2930
import org.jspecify.annotations.Nullable;
@@ -38,23 +39,19 @@
3839
* @param <PK> the type of the auditing type's identifier.
3940
*/
4041
@MappedSuperclass
41-
@SuppressWarnings("NullAway")
42+
@SuppressWarnings("NullAway") // querydsl does not work with jspecify -> 'Did not find type @org.jspecify.annotations.Nullable...'
4243
public abstract class AbstractAuditable<U, PK extends Serializable> extends AbstractPersistable<PK>
4344
implements Auditable<U, PK, LocalDateTime> {
4445

45-
// @Nullable
4646
@ManyToOne //
4747
private U createdBy;
4848

49-
// @Nullable
5049
private Instant createdDate;
5150

52-
// @Nullable
5351
@ManyToOne //
5452
private U lastModifiedBy;
5553

56-
// @Nullable
57-
private Instant lastModifiedDate;
54+
private Instant lastModifiedDate;
5855

5956
@Override
6057
public Optional<U> getCreatedBy() {

spring-data-jpa/src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,13 @@
3838
* @param <PK> the type of the identifier.
3939
*/
4040
@MappedSuperclass
41-
41+
@SuppressWarnings("NullAway") // querydsl does not work with jspecify -> 'Did not find type @org.jspecify.annotations.Nullable...'
4242
public abstract class AbstractPersistable<PK extends Serializable> implements Persistable<PK> {
4343

4444
@Nullable
4545
@Id @GeneratedValue private PK id;
4646

4747
@Override
48-
@SuppressWarnings("NullAway")
49-
// TODO: Querydsl APT does not like @Nullable
50-
// -> errors with cryptic 'Did not find type @org.jspecify.annotations.Nullable PK'
5148
public PK getId() {
5249
return id;
5350
}

spring-data-jpa/src/main/java/org/springframework/data/jpa/domain/DeleteSpecification.java

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ default DeleteSpecification<T> or(PredicateSpecification<T> other) {
151151
* @param spec can be {@literal null}.
152152
* @return guaranteed to be not {@literal null}.
153153
*/
154+
@Contract("_ -> new")
154155
static <T> DeleteSpecification<T> not(DeleteSpecification<T> spec) {
155156

156157
Assert.notNull(spec, "Specification must not be null");

spring-data-jpa/src/main/java/org/springframework/data/jpa/domain/JpaSort.java

+14
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
import org.springframework.data.domain.Sort;
2929

3030
import org.jspecify.annotations.Nullable;
31+
import org.springframework.lang.CheckReturnValue;
32+
import org.springframework.lang.Contract;
3133
import org.springframework.util.Assert;
3234

3335
/**
@@ -103,6 +105,8 @@ public static JpaSort of(Direction direction, Path<?, ?>... paths) {
103105
* @param attributes must not be {@literal null}.
104106
* @return
105107
*/
108+
@Contract("_, _ -> new")
109+
@CheckReturnValue
106110
public JpaSort and(@Nullable Direction direction, Attribute<?, ?>... attributes) {
107111

108112
Assert.notNull(attributes, "Attributes must not be null");
@@ -117,6 +121,8 @@ public JpaSort and(@Nullable Direction direction, Attribute<?, ?>... attributes)
117121
* @param paths must not be {@literal null}.
118122
* @return
119123
*/
124+
@Contract("_, _ -> new")
125+
@CheckReturnValue
120126
public JpaSort and(@Nullable Direction direction, Path<?, ?>... paths) {
121127

122128
Assert.notNull(paths, "Paths must not be null");
@@ -137,6 +143,8 @@ public JpaSort and(@Nullable Direction direction, Path<?, ?>... paths) {
137143
* @param properties must not be {@literal null} or empty.
138144
* @return
139145
*/
146+
@Contract("_, _ -> new")
147+
@CheckReturnValue
140148
public JpaSort andUnsafe(@Nullable Direction direction, String... properties) {
141149

142150
Assert.notEmpty(properties, "Properties must not be empty");
@@ -274,6 +282,8 @@ private Path(List<? extends Attribute<?, ?>> attributes) {
274282
* @param attribute must not be {@literal null}.
275283
* @return
276284
*/
285+
@Contract("_ -> new")
286+
@CheckReturnValue
277287
public <A extends Attribute<S, U>, U> Path<S, U> dot(A attribute) {
278288
return new Path<>(add(attribute));
279289
}
@@ -284,6 +294,8 @@ public <A extends Attribute<S, U>, U> Path<S, U> dot(A attribute) {
284294
* @param attribute must not be {@literal null}.
285295
* @return
286296
*/
297+
@Contract("_ -> new")
298+
@CheckReturnValue
287299
public <P extends PluralAttribute<S, ?, U>, U> Path<S, U> dot(P attribute) {
288300
return new Path<>(add(attribute));
289301
}
@@ -371,6 +383,8 @@ public JpaOrder with(NullHandling nullHandling) {
371383
* @param properties must not be {@literal null}.
372384
* @return
373385
*/
386+
@Contract("_ -> new")
387+
@CheckReturnValue
374388
public Sort withUnsafe(String... properties) {
375389

376390
Assert.notEmpty(properties, "Properties must not be empty");

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/AbstractJpaQuery.java

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
import org.springframework.data.repository.query.ReturnedType;
5858
import org.springframework.data.util.Lazy;
5959
import org.springframework.jdbc.support.JdbcUtils;
60+
import org.springframework.lang.Contract;
6061
import org.springframework.util.Assert;
6162
import org.springframework.util.ClassUtils;
6263

@@ -193,6 +194,7 @@ protected JpaQueryExecution getExecution() {
193194
* @return
194195
*/
195196
@SuppressWarnings("NullAway")
197+
@Contract("_, _ -> param1")
196198
protected <T extends Query> T applyHints(T query, JpaQueryMethod method) {
197199

198200
List<QueryHint> hints = method.getHints();

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/EscapeCharacter.java

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import java.util.stream.Stream;
2121

2222
import org.jspecify.annotations.Nullable;
23+
import org.springframework.lang.Contract;
2324

2425
/**
2526
* A value type encapsulating an escape character for LIKE queries and the actually usage of it in escaping
@@ -49,6 +50,7 @@ public static EscapeCharacter of(char escapeCharacter) {
4950
* @param value may be {@literal null}.
5051
* @return
5152
*/
53+
@Contract("null -> null")
5254
public @Nullable String escape(@Nullable String value) {
5355

5456
return value == null //

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/JpaQueryMethod.java

-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ private static Class<?> potentiallyUnwrapReturnTypeFor(RepositoryMetadata metada
149149
}
150150

151151
@Override
152-
@SuppressWarnings({ "rawtypes", "unchecked" })
153152
public JpaEntityMetadata<?> getEntityInformation() {
154153
return this.entityMetadata.get();
155154
}

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/JpqlQueryBuilder.java

+17
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
import org.jspecify.annotations.Nullable;
3434
import org.springframework.data.mapping.PropertyPath;
3535
import org.springframework.data.util.Predicates;
36+
import org.springframework.lang.CheckReturnValue;
37+
import org.springframework.lang.Contract;
3638
import org.springframework.util.Assert;
3739
import org.springframework.util.ClassUtils;
3840
import org.springframework.util.ObjectUtils;
@@ -405,16 +407,19 @@ public interface SelectStep {
405407
/**
406408
* Apply {@code DISTINCT}.
407409
*/
410+
@CheckReturnValue
408411
SelectStep distinct();
409412

410413
/**
411414
* Select the entity.
412415
*/
416+
@CheckReturnValue
413417
Select entity();
414418

415419
/**
416420
* Select the count.
417421
*/
422+
@CheckReturnValue
418423
Select count();
419424

420425
/**
@@ -425,6 +430,7 @@ public interface SelectStep {
425430
* @param paths
426431
* @return
427432
*/
433+
@CheckReturnValue
428434
default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.PathExpression> paths) {
429435
return instantiate(resultType.getName(), paths);
430436
}
@@ -436,6 +442,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
436442
* @param paths
437443
* @return
438444
*/
445+
@CheckReturnValue
439446
Select instantiate(String resultType, Collection<JpqlQueryBuilder.PathExpression> paths);
440447

441448
/**
@@ -444,6 +451,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
444451
* @param paths
445452
* @return
446453
*/
454+
@CheckReturnValue
447455
Select select(Collection<JpqlQueryBuilder.PathExpression> paths);
448456

449457
/**
@@ -452,6 +460,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
452460
* @param path
453461
* @return
454462
*/
463+
@CheckReturnValue
455464
default Select select(JpqlQueryBuilder.PathExpression path) {
456465
return select(List.of(path));
457466
}
@@ -626,6 +635,8 @@ public interface Predicate {
626635
* @param other
627636
* @return a composed predicate combining this and {@code other} using the OR operator.
628637
*/
638+
@Contract("_ -> new")
639+
@CheckReturnValue
629640
default Predicate or(Predicate other) {
630641
return new OrPredicate(this, other);
631642
}
@@ -636,6 +647,8 @@ default Predicate or(Predicate other) {
636647
* @param other
637648
* @return a composed predicate combining this and {@code other} using the AND operator.
638649
*/
650+
@Contract("_ -> new")
651+
@CheckReturnValue
639652
default Predicate and(Predicate other) { // don't like the structuring of this and the nest() thing
640653
return new AndPredicate(this, other);
641654
}
@@ -645,6 +658,8 @@ default Predicate and(Predicate other) { // don't like the structuring of this a
645658
*
646659
* @return a nested variant of this predicate.
647660
*/
661+
@Contract("-> new")
662+
@CheckReturnValue
648663
default Predicate nest() {
649664
return new NestedPredicate(this);
650665
}
@@ -700,6 +715,7 @@ private Select(Selection selection, Entity entity) {
700715
* @param join
701716
* @return
702717
*/
718+
@Contract("_ -> this")
703719
public Select join(Join join) {
704720

705721
if (join.source() instanceof Join parent) {
@@ -716,6 +732,7 @@ public Select join(Join join) {
716732
* @param orderBy
717733
* @return
718734
*/
735+
@Contract("_ -> this")
719736
public Select orderBy(Expression orderBy) {
720737
this.orderBy.add(orderBy);
721738
return this;

0 commit comments

Comments
 (0)