diff --git a/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/City.java b/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/City.java index 2b97416fde3..c83915b1639 100644 --- a/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/City.java +++ b/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/City.java @@ -16,28 +16,34 @@ package smoketest.data.r2dbc; +import org.jspecify.annotations.Nullable; + import org.springframework.data.annotation.Id; public class City { @Id - private Long id; + private @Nullable Long id; + @SuppressWarnings("NullAway.Init") private String name; + @SuppressWarnings("NullAway.Init") private String state; + @SuppressWarnings("NullAway.Init") private String country; protected City() { } - public City(String name, String country) { + public City(String name, String state, String country) { this.name = name; + this.state = state; this.country = country; } - public Long getId() { + public @Nullable Long getId() { return this.id; } diff --git a/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/package-info.java b/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/package-info.java new file mode 100644 index 00000000000..66374570bac --- /dev/null +++ b/smoke-test/spring-boot-smoke-test-data-r2dbc-liquibase/src/main/java/smoketest/data/r2dbc/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-present the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@NullMarked +package smoketest.data.r2dbc; + +import org.jspecify.annotations.NullMarked;