Skip to content

Commit 3f89062

Browse files
committed
DATAJDBC-199 - Fix @SInCE JavaDoc comments.
1 parent 5382d3b commit 3f89062

File tree

64 files changed

+65
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+65
-27
lines changed

src/main/java/org/springframework/data/jdbc/core/CascadingDataAccessStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* not throw an exception.
3030
*
3131
* @author Jens Schauder
32+
* @since 1.0
3233
*/
3334
public class CascadingDataAccessStrategy implements DataAccessStrategy {
3435

src/main/java/org/springframework/data/jdbc/core/DataAccessStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* Abstraction for accesses to the database that should be implementable with a single SQL statement and relates to a single entity as opposed to {@link JdbcEntityOperations} which provides interactions related to complete aggregates.
2525
*
2626
* @author Jens Schauder
27+
* @since 1.0
2728
*/
2829
public interface DataAccessStrategy {
2930

src/main/java/org/springframework/data/jdbc/core/DefaultDataAccessStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
* The default {@link DataAccessStrategy} is to generate SQL statements based on meta data from the entity.
4545
*
4646
* @author Jens Schauder
47+
* @since 1.0
4748
*/
4849
public class DefaultDataAccessStrategy implements DataAccessStrategy {
4950

src/main/java/org/springframework/data/jdbc/core/DefaultJdbcInterpreter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* interactions.
3535
*
3636
* @author Jens Schauder
37+
* @since 1.0
3738
*/
3839
class DefaultJdbcInterpreter implements Interpreter {
3940

src/main/java/org/springframework/data/jdbc/core/DelegatingDataAccessStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* cyclical dependencies.
2727
*
2828
* @author Jens Schauder
29+
* @since 1.0
2930
*/
3031
public class DelegatingDataAccessStrategy implements DataAccessStrategy {
3132

src/main/java/org/springframework/data/jdbc/core/EntityRowMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* @author Jens Schauder
4545
* @author Oliver Gierke
46-
* @since 2.0
46+
* @since 1.0
4747
*/
4848
public class EntityRowMapper<T> implements RowMapper<T> {
4949

src/main/java/org/springframework/data/jdbc/core/FunctionCollector.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* exceptions this {@link Collector} throws itself an exception, gathering all exceptions thrown.
3535
*
3636
* @author Jens Schauder
37+
* @since 1.0
3738
*/
3839
class FunctionCollector<T> implements Collector<DataAccessStrategy, FunctionCollector<T>.ResultOrException, T> {
3940

src/main/java/org/springframework/data/jdbc/core/IterableOfEntryToMapConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* A converter for creating a {@link Map} from an {@link Iterable<Map.Entry>}.
3030
*
3131
* @author Jens Schauder
32+
* @since 1.0
3233
*/
3334
class IterableOfEntryToMapConverter implements ConditionalConverter, Converter<Iterable, Map> {
3435

src/main/java/org/springframework/data/jdbc/core/JdbcEntityOperations.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* Specifies a operations one can perform on a database, based on an <em>Domain Type</em>.
2020
*
2121
* @author Jens Schauder
22+
* @since 1.0
2223
*/
2324
public interface JdbcEntityOperations {
2425

src/main/java/org/springframework/data/jdbc/core/JdbcEntityTemplate.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
*
3939
* @author Jens Schauder
4040
* @author Mark Paluch
41+
* @since 1.0
4142
*/
4243
public class JdbcEntityTemplate implements JdbcEntityOperations {
4344

0 commit comments

Comments
 (0)