diff --git a/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/JdbcValue.java b/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/JdbcValue.java deleted file mode 100644 index c8c37b53..00000000 --- a/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/JdbcValue.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright 2019-2021 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. - */ -package org.springframework.data.jdbc.core.convert; - -import java.sql.JDBCType; -import java.util.Objects; - -import org.springframework.lang.Nullable; - -/** - * Wraps a value with the JDBCType that should be used to pass it as a bind parameter to a - * {@link java.sql.PreparedStatement}. Register a converter from any type to {@link JdbcValue} in order to control the - * value and the {@link JDBCType} as which a value should get passed to the JDBC driver. - * - * @author Jens Schauder - * @since 1.1 - * @deprecated use {@link org.springframework.data.jdbc.core.mapping.JdbcValue} - */ -@Deprecated -public final class JdbcValue extends org.springframework.data.jdbc.core.mapping.JdbcValue { - - private JdbcValue(@Nullable Object value, @Nullable JDBCType jdbcType) { - super(value, jdbcType); - } - - public static JdbcValue of(@Nullable Object value, @Nullable JDBCType jdbcType) { - return new JdbcValue(value, jdbcType); - } -}