DATAKV-205 - Update copyright years to 2018.

This commit is contained in:
Mark Paluch
2018-01-04 08:59:42 +01:00
parent 80fd17c0ca
commit 6381daacc9
76 changed files with 143 additions and 143 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import org.springframework.data.annotation.Persistent;
/** /**
* Marker interface for methods with {@link Persistent} annotations indicating the presence of a dedicated keyspace the * Marker interface for methods with {@link Persistent} annotations indicating the presence of a dedicated keyspace the
* entity should reside in. If present the value will be picked up for resolving the keyspace. * entity should reside in. If present the value will be picked up for resolving the keyspace.
* *
* <pre> * <pre>
* <code> * <code>
* &#64;Persistent * &#64;Persistent
@@ -35,24 +35,24 @@ import org.springframework.data.annotation.Persistent;
* &#64;Retention(RetentionPolicy.RUNTIME) * &#64;Retention(RetentionPolicy.RUNTIME)
* &#64;Target({ ElementType.TYPE }) * &#64;Target({ ElementType.TYPE })
* public &#64;interface Document { * public &#64;interface Document {
* *
* &#64;KeySpace * &#64;KeySpace
* String collection() default "person"; * String collection() default "person";
* } * }
* </code> * </code>
* </pre> * </pre>
* *
* Can also be directly used on types to indicate the keyspace. * Can also be directly used on types to indicate the keyspace.
* *
* <pre> * <pre>
* <code> * <code>
* &#64;KeySpace("persons") * &#64;KeySpace("persons")
* public class Foo { * public class Foo {
* *
* } * }
* </code> * </code>
* </pre> * </pre>
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@Documented @Documented

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@ import org.springframework.util.Assert;
/** /**
* Forwards {@link CloseableIterator} invocations to the configured {@link Iterator} delegate. * Forwards {@link CloseableIterator} invocations to the configured {@link Iterator} delegate.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Thomas Darimont * @author Thomas Darimont
* @author Oliver Gierke * @author Oliver Gierke
@@ -38,7 +38,7 @@ public class ForwardingCloseableIterator<T> implements CloseableIterator<T> {
/** /**
* Creates a new {@link ForwardingCloseableIterator}. * Creates a new {@link ForwardingCloseableIterator}.
* *
* @param delegate must not be {@literal null}. * @param delegate must not be {@literal null}.
*/ */
public ForwardingCloseableIterator(Iterator<? extends T> delegate) { public ForwardingCloseableIterator(Iterator<? extends T> delegate) {
@@ -48,7 +48,7 @@ public class ForwardingCloseableIterator<T> implements CloseableIterator<T> {
/** /**
* Creates a new {@link ForwardingCloseableIterator} that invokes the configured {@code closeHandler} on * Creates a new {@link ForwardingCloseableIterator} that invokes the configured {@code closeHandler} on
* {@link #close()}. * {@link #close()}.
* *
* @param delegate must not be {@literal null}. * @param delegate must not be {@literal null}.
* @param closeHandler may be {@literal null}. * @param closeHandler may be {@literal null}.
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import org.springframework.data.util.TypeInformation;
/** /**
* API for components generating identifiers. * API for components generating identifiers.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
*/ */
@@ -27,7 +27,7 @@ public interface IdentifierGenerator {
/** /**
* Creates an identifier of the given type. * Creates an identifier of the given type.
* *
* @param type must not be {@literal null}. * @param type must not be {@literal null}.
* @return an identifier of the given type. * @return an identifier of the given type.
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ import org.springframework.lang.Nullable;
/** /**
* {@link KeyValueAdapter} unifies access and shields the underlying key/value specific implementation. * {@link KeyValueAdapter} unifies access and shields the underlying key/value specific implementation.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Thomas Darimont * @author Thomas Darimont
* @author Mark Paluch * @author Mark Paluch
@@ -34,7 +34,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Add object with given id to keyspace. * Add object with given id to keyspace.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return the item previously associated with the id. * @return the item previously associated with the id.
@@ -43,7 +43,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Check if a object with given id exists in keyspace. * Check if a object with given id exists in keyspace.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return true if item of type with id exists. * @return true if item of type with id exists.
@@ -52,7 +52,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Get the object with given id from keyspace. * Get the object with given id from keyspace.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return {@literal null} in case no matching item exists. * @return {@literal null} in case no matching item exists.
@@ -62,7 +62,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Get the object with given id from keyspace. * Get the object with given id from keyspace.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @param type must not be {@literal null}. * @param type must not be {@literal null}.
@@ -74,7 +74,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Delete and return the object with given type and id. * Delete and return the object with given type and id.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return {@literal null} if object could not be found * @return {@literal null} if object could not be found
@@ -84,7 +84,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Delete and return the object with given type and id. * Delete and return the object with given type and id.
* *
* @param id must not be {@literal null}. * @param id must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @param type must not be {@literal null}. * @param type must not be {@literal null}.
@@ -96,7 +96,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Get all elements for given keyspace. * Get all elements for given keyspace.
* *
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return empty {@link Collection} if nothing found. * @return empty {@link Collection} if nothing found.
*/ */
@@ -104,7 +104,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Returns a {@link CloseableIterator} that iterates over all entries. * Returns a {@link CloseableIterator} that iterates over all entries.
* *
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return * @return
*/ */
@@ -112,7 +112,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Remove all objects of given type. * Remove all objects of given type.
* *
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
*/ */
void deleteAllOf(String keyspace); void deleteAllOf(String keyspace);
@@ -124,7 +124,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Find all matching objects within {@literal keyspace}. * Find all matching objects within {@literal keyspace}.
* *
* @param query must not be {@literal null}. * @param query must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return empty {@link Collection} if no match found. * @return empty {@link Collection} if no match found.
@@ -142,7 +142,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Count number of objects within {@literal keyspace}. * Count number of objects within {@literal keyspace}.
* *
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return * @return
*/ */
@@ -150,7 +150,7 @@ public interface KeyValueAdapter extends DisposableBean {
/** /**
* Count all matching objects within {@literal keyspace}. * Count all matching objects within {@literal keyspace}.
* *
* @param query must not be {@literal null}. * @param query must not be {@literal null}.
* @param keyspace must not be {@literal null}. * @param keyspace must not be {@literal null}.
* @return * @return

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.lang.Nullable;
/** /**
* Generic callback interface for code that operates on a {@link KeyValueAdapter}. This is particularly useful for * Generic callback interface for code that operates on a {@link KeyValueAdapter}. This is particularly useful for
* delegating code that needs to work closely on the underlying key/value store implementation. * delegating code that needs to work closely on the underlying key/value store implementation.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Mark Paluch * @author Mark Paluch
* @param <T> * @param <T>
@@ -30,7 +30,7 @@ public interface KeyValueCallback<T> {
/** /**
* Gets called by {@code KeyValueTemplate#execute(KeyValueCallback)}. Allows for returning a result object created * Gets called by {@code KeyValueTemplate#execute(KeyValueCallback)}. Allows for returning a result object created
* within the callback, i.e. a domain object or a collection of domain objects. * within the callback, i.e. a domain object or a collection of domain objects.
* *
* @param adapter * @param adapter
* @return * @return
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ import org.springframework.util.Assert;
/** /**
* Simple {@link PersistenceExceptionTranslator} implementation for key/value stores that converts the given runtime * Simple {@link PersistenceExceptionTranslator} implementation for key/value stores that converts the given runtime
* exception to an appropriate exception from the {@code org.springframework.dao} hierarchy. * exception to an appropriate exception from the {@code org.springframework.dao} hierarchy.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Mark Paluch * @author Mark Paluch
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import org.springframework.lang.Nullable;
/** /**
* Resolves the {@link Sort} object from given {@link KeyValueQuery} and potentially converts it into a store specific * Resolves the {@link Sort} object from given {@link KeyValueQuery} and potentially converts it into a store specific
* representation that can be used by the {@link QueryEngine} implementation. * representation that can be used by the {@link QueryEngine} implementation.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Mark Paluch * @author Mark Paluch
* @param <T> * @param <T>
@@ -32,7 +32,7 @@ public interface SortAccessor<T> {
/** /**
* Reads {@link KeyValueQuery#getSort()} of given {@link KeyValueQuery} and applies required transformation to match * Reads {@link KeyValueQuery#getSort()} of given {@link KeyValueQuery} and applies required transformation to match
* the desired type. * the desired type.
* *
* @param query must not be {@literal null}. * @param query must not be {@literal null}.
* @return {@literal null} in case {@link Sort} has not been defined on {@link KeyValueQuery}. * @return {@literal null} in case {@link Sort} has not been defined on {@link KeyValueQuery}.
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@ import org.springframework.util.Assert;
/** /**
* {@link SpelCriteria} allows to pass on a {@link SpelExpression} and {@link EvaluationContext} to the actual query * {@link SpelCriteria} allows to pass on a {@link SpelExpression} and {@link EvaluationContext} to the actual query
* processor. This decouples the {@link SpelExpression} from the context it is used in. * processor. This decouples the {@link SpelExpression} from the context it is used in.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
*/ */
@@ -34,7 +34,7 @@ public class SpelCriteria {
/** /**
* Creates a new {@link SpelCriteria} for the given {@link SpelExpression}. * Creates a new {@link SpelCriteria} for the given {@link SpelExpression}.
* *
* @param expression must not be {@literal null}. * @param expression must not be {@literal null}.
*/ */
public SpelCriteria(SpelExpression expression) { public SpelCriteria(SpelExpression expression) {
@@ -43,7 +43,7 @@ public class SpelCriteria {
/** /**
* Creates new {@link SpelCriteria}. * Creates new {@link SpelCriteria}.
* *
* @param expression must not be {@literal null}. * @param expression must not be {@literal null}.
* @param context must not be {@literal null}. * @param context must not be {@literal null}.
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Create new {@link SpelPropertyComparator} for the given property path an {@link SpelExpressionParser}. * Create new {@link SpelPropertyComparator} for the given property path an {@link SpelExpressionParser}.
* *
* @param path must not be {@literal null} or empty. * @param path must not be {@literal null} or empty.
* @param parser must not be {@literal null}. * @param parser must not be {@literal null}.
*/ */
@@ -56,7 +56,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Sort {@literal ascending}. * Sort {@literal ascending}.
* *
* @return * @return
*/ */
public SpelPropertyComparator<T> asc() { public SpelPropertyComparator<T> asc() {
@@ -66,7 +66,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Sort {@literal descending}. * Sort {@literal descending}.
* *
* @return * @return
*/ */
public SpelPropertyComparator<T> desc() { public SpelPropertyComparator<T> desc() {
@@ -76,7 +76,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Sort {@literal null} values first. * Sort {@literal null} values first.
* *
* @return * @return
*/ */
public SpelPropertyComparator<T> nullsFirst() { public SpelPropertyComparator<T> nullsFirst() {
@@ -86,7 +86,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Sort {@literal null} values last. * Sort {@literal null} values last.
* *
* @return * @return
*/ */
public SpelPropertyComparator<T> nullsLast() { public SpelPropertyComparator<T> nullsLast() {
@@ -96,7 +96,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Parse values to {@link SpelExpression} * Parse values to {@link SpelExpression}
* *
* @return * @return
*/ */
protected SpelExpression getExpression() { protected SpelExpression getExpression() {
@@ -110,7 +110,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Create the expression raw value. * Create the expression raw value.
* *
* @return * @return
*/ */
protected String buildExpressionForPath() { protected String buildExpressionForPath() {
@@ -140,7 +140,7 @@ public class SpelPropertyComparator<T> implements Comparator<T> {
/** /**
* Get dot path to property. * Get dot path to property.
* *
* @return * @return
*/ */
public String getPath() { public String getPath() {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import org.springframework.util.StringUtils;
/** /**
* {@link KeyValuePersistentEntity} implementation that adds specific meta-data such as the {@literal keySpace}.. * {@link KeyValuePersistentEntity} implementation that adds specific meta-data such as the {@literal keySpace}..
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
* @author Mark Paluch * @author Mark Paluch

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.util.ClassUtils;
/** /**
* Most trivial implementation of {@link KeySpaceResolver} returning the {@link Class#getName()}. * Most trivial implementation of {@link KeySpaceResolver} returning the {@link Class#getName()}.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.lang.Nullable;
/** /**
* {@link KeySpaceResolver} determines the {@literal keyspace} a given type is assigned to. A keyspace in this context * {@link KeySpaceResolver} determines the {@literal keyspace} a given type is assigned to. A keyspace in this context
* is a specific region/collection/grouping of elements sharing a common keyrange. <br /> * is a specific region/collection/grouping of elements sharing a common keyrange. <br />
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Mark Paluch * @author Mark Paluch
*/ */
@@ -28,7 +28,7 @@ public interface KeySpaceResolver {
/** /**
* Determine the {@literal keySpace} to use for a given type. * Determine the {@literal keySpace} to use for a given type.
* *
* @param type must not be {@literal null}. * @param type must not be {@literal null}.
* @return * @return
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ public interface KeyValuePersistentEntity<T, P extends KeyValuePersistentPropert
/** /**
* Get the {@literal keySpace} a given entity assigns to. * Get the {@literal keySpace} a given entity assigns to.
* *
* @return can be {@literal null}. * @return can be {@literal null}.
*/ */
@Nullable @Nullable

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2016 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import org.springframework.data.repository.query.parser.AbstractQueryCreator;
/** /**
* Annotation to customize the query creator type to be used for a specific store. * Annotation to customize the query creator type to be used for a specific store.
* *
* @author Oliver Gierke * @author Oliver Gierke
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@@ -40,7 +40,7 @@ public @interface QueryCreatorType {
/** /**
* The {@link RepositoryQuery} type to be created by the {@link QueryCreatorType#value()}. * The {@link RepositoryQuery} type to be created by the {@link QueryCreatorType#value()}.
* *
* @return * @return
* @since 1.1 * @since 1.1
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ import org.springframework.lang.Nullable;
/** /**
* {@link KeyValuePartTreeQuery} implementation deriving queries from {@link PartTree} using a predefined * {@link KeyValuePartTreeQuery} implementation deriving queries from {@link PartTree} using a predefined
* {@link AbstractQueryCreator} that caches the once created query. * {@link AbstractQueryCreator} that caches the once created query.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Mark Paluch * @author Mark Paluch
* @since 1.1 * @since 1.1

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2016 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ import org.springframework.data.repository.query.QueryLookupStrategy.Key;
/** /**
* Annotation to activate Map repositories. If no base package is configured through either {@link #value()}, * Annotation to activate Map repositories. If no base package is configured through either {@link #value()},
* {@link #basePackages()} or {@link #basePackageClasses()} it will trigger scanning of the package of annotated class. * {@link #basePackages()} or {@link #basePackageClasses()} it will trigger scanning of the package of annotated class.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
*/ */
@@ -87,14 +87,14 @@ public @interface EnableMapRepositories {
* Returns the postfix to be used when looking up custom repository implementations. Defaults to {@literal Impl}. So * Returns the postfix to be used when looking up custom repository implementations. Defaults to {@literal Impl}. So
* for a repository named {@code PersonRepository} the corresponding implementation class will be looked up scanning * for a repository named {@code PersonRepository} the corresponding implementation class will be looked up scanning
* for {@code PersonRepositoryImpl}. * for {@code PersonRepositoryImpl}.
* *
* @return * @return
*/ */
String repositoryImplementationPostfix() default "Impl"; String repositoryImplementationPostfix() default "Impl";
/** /**
* Configures the location of where to find the Spring Data named queries properties file. * Configures the location of where to find the Spring Data named queries properties file.
* *
* @return * @return
*/ */
String namedQueriesLocation() default ""; String namedQueriesLocation() default "";
@@ -102,7 +102,7 @@ public @interface EnableMapRepositories {
/** /**
* Returns the key of the {@link QueryLookupStrategy} to be used for lookup queries for query methods. Defaults to * Returns the key of the {@link QueryLookupStrategy} to be used for lookup queries for query methods. Defaults to
* {@link Key#CREATE_IF_NOT_FOUND}. * {@link Key#CREATE_IF_NOT_FOUND}.
* *
* @return * @return
*/ */
Key queryLookupStrategy() default Key.CREATE_IF_NOT_FOUND; Key queryLookupStrategy() default Key.CREATE_IF_NOT_FOUND;
@@ -110,21 +110,21 @@ public @interface EnableMapRepositories {
/** /**
* Returns the {@link FactoryBean} class to be used for each repository instance. Defaults to * Returns the {@link FactoryBean} class to be used for each repository instance. Defaults to
* {@link KeyValueRepositoryFactoryBean}. * {@link KeyValueRepositoryFactoryBean}.
* *
* @return * @return
*/ */
Class<?> repositoryFactoryBeanClass() default KeyValueRepositoryFactoryBean.class; Class<?> repositoryFactoryBeanClass() default KeyValueRepositoryFactoryBean.class;
/** /**
* Configure the repository base class to be used to create repository proxies for this particular configuration. * Configure the repository base class to be used to create repository proxies for this particular configuration.
* *
* @return * @return
*/ */
Class<?> repositoryBaseClass() default DefaultRepositoryBaseClass.class; Class<?> repositoryBaseClass() default DefaultRepositoryBaseClass.class;
/** /**
* Configures the name of the {@link KeyValueOperations} bean to be used with the repositories detected. * Configures the name of the {@link KeyValueOperations} bean to be used with the repositories detected.
* *
* @return * @return
*/ */
String keyValueTemplateRef() default "mapKeyValueTemplate"; String keyValueTemplateRef() default "mapKeyValueTemplate";
@@ -138,7 +138,7 @@ public @interface EnableMapRepositories {
/** /**
* Configures the {@link Map} structure used for data storage. Defaults to {@link ConcurrentHashMap}. Will be ignored * Configures the {@link Map} structure used for data storage. Defaults to {@link ConcurrentHashMap}. Will be ignored
* in case an explicit bean for the {@link KeyValueTemplate} is available in the {@link ApplicationContext}. * in case an explicit bean for the {@link KeyValueTemplate} is available in the {@link ApplicationContext}.
* *
* @see #keyValueTemplateRef() * @see #keyValueTemplateRef()
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi
/** /**
* Map specific {@link RepositoryBeanDefinitionRegistrarSupport} implementation. * Map specific {@link RepositoryBeanDefinitionRegistrarSupport} implementation.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
public class MapRepositoriesRegistrar extends RepositoryBeanDefinitionRegistrarSupport { public class MapRepositoriesRegistrar extends RepositoryBeanDefinitionRegistrarSupport {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ public class MapRepositoryConfigurationExtension extends KeyValueRepositoryConfi
return "map"; return "map";
} }
/* /*
* (non-Javadoc) * (non-Javadoc)
* @see org.springframework.data.keyvalue.repository.config.KeyValueRepositoryConfigurationExtension#getDefaultKeyValueTemplateRef() * @see org.springframework.data.keyvalue.repository.config.KeyValueRepositoryConfigurationExtension#getDefaultKeyValueTemplateRef()
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ import org.springframework.data.keyvalue.annotation.KeySpace;
/** /**
* Custom composed {@link Persistent} annotation using {@link AliasFor} on name attribute. * Custom composed {@link Persistent} annotation using {@link AliasFor} on name attribute.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@Persistent @Persistent

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.data.keyvalue.annotation.KeySpace;
/** /**
* Class that inherits its {@link KeySpace} from a super class annotated with a custom {@link CustomKeySpaceAnnotation} * Class that inherits its {@link KeySpace} from a super class annotated with a custom {@link CustomKeySpaceAnnotation}
* annotation. * annotation.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
public class SubclassOfTypeWithCustomComposedKeySpaceAnnotation public class SubclassOfTypeWithCustomComposedKeySpaceAnnotation

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016-2017 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.data.keyvalue.annotation.KeySpace;
/** /**
* A {@link Persistent} type with explict {@link KeySpace}. * A {@link Persistent} type with explict {@link KeySpace}.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@KeySpace("rhaegar") @KeySpace("rhaegar")

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ import org.springframework.data.keyvalue.annotation.KeySpace;
/** /**
* A type inheriting {@link Persistent} from {@link TypeAlias} not having a {@link KeySpace} defined. * A type inheriting {@link Persistent} from {@link TypeAlias} not having a {@link KeySpace} defined.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@TypeAlias("foo") @TypeAlias("foo")

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import org.springframework.data.keyvalue.annotation.KeySpace;
/** /**
* A {@link Persistent} class without a defined {@link KeySpace}. * A {@link Persistent} class without a defined {@link KeySpace}.
* *
* @author Christoph Strobl * @author Christoph Strobl
*/ */
@Persistent @Persistent

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016-2017 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016-2017 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015-2017 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016-2017 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2015 the original author or authors. * Copyright 2015-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2015 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ import org.springframework.data.map.AbstractRepositoryUnitTests.PersonRepository
/** /**
* Unit tests for {@link SimpleKeyValueRepository}. * Unit tests for {@link SimpleKeyValueRepository}.
* *
* @author Christoph Strobl * @author Christoph Strobl
* @author Oliver Gierke * @author Oliver Gierke
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@ import org.springframework.test.util.ReflectionTestUtils;
/** /**
* Integration tests for {@link MapRepositoryConfigurationExtension}. * Integration tests for {@link MapRepositoryConfigurationExtension}.
* *
* @author Oliver Gierke * @author Oliver Gierke
* @author Christoph Strobl * @author Christoph Strobl
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.