DATAKV-94 - Remove @since attributes from left over from sd-commons.
This commit is contained in:
@@ -54,7 +54,6 @@ import org.springframework.data.annotation.Persistent;
|
||||
* </pre>
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
||||
@@ -25,7 +25,6 @@ import org.springframework.data.keyvalue.core.query.KeyValueQuery;
|
||||
* {@literal count} execution to.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public abstract class AbstractKeyValueAdapter implements KeyValueAdapter {
|
||||
|
||||
|
||||
@@ -21,7 +21,6 @@ import org.springframework.data.keyvalue.core.query.KeyValueQuery;
|
||||
* Resolves the criteria object from given {@link KeyValueQuery}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
*/
|
||||
public interface CriteriaAccessor<T> {
|
||||
|
||||
@@ -22,7 +22,6 @@ import org.springframework.data.util.TypeInformation;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
public interface IdentifierGenerator {
|
||||
|
||||
|
||||
@@ -42,7 +42,6 @@ abstract class KeySpaceUtils {
|
||||
* Looks up {@link Persistent} when used as meta annotation to find the {@link KeySpace} attribute.
|
||||
*
|
||||
* @return
|
||||
* @since 1.10
|
||||
*/
|
||||
public static Object getKeySpace(Class<?> type) {
|
||||
|
||||
|
||||
@@ -25,7 +25,6 @@ import org.springframework.data.keyvalue.core.query.KeyValueQuery;
|
||||
* {@link KeyValueAdapter} unifies access and shields the underlying key/value specific implementation.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public interface KeyValueAdapter extends DisposableBean {
|
||||
|
||||
|
||||
@@ -20,7 +20,6 @@ package org.springframework.data.keyvalue.core;
|
||||
* delegating code that needs to work closely on the underlying key/value store implementation.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
*/
|
||||
public interface KeyValueCallback<T> {
|
||||
|
||||
@@ -28,7 +28,6 @@ import org.springframework.data.mapping.context.MappingContext;
|
||||
* Interface that specifies a basic set of key/value operations. Implemented by {@link KeyValueTemplate}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public interface KeyValueOperations extends DisposableBean {
|
||||
|
||||
|
||||
@@ -26,7 +26,6 @@ import org.springframework.dao.support.PersistenceExceptionTranslator;
|
||||
* exception to an appropriate exception from the {@code org.springframework.dao} hierarchy.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValuePersistenceExceptionTranslator implements PersistenceExceptionTranslator {
|
||||
|
||||
|
||||
@@ -42,7 +42,6 @@ import org.springframework.util.StringUtils;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValueTemplate implements KeyValueOperations {
|
||||
|
||||
|
||||
@@ -24,7 +24,6 @@ import org.springframework.data.keyvalue.core.query.KeyValueQuery;
|
||||
* Base implementation for accessing and executing {@link KeyValueQuery} against a {@link KeyValueAdapter}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <ADAPTER>
|
||||
* @param <CRITERIA>
|
||||
* @param <SORT>
|
||||
|
||||
@@ -23,7 +23,6 @@ import org.springframework.data.keyvalue.core.query.KeyValueQuery;
|
||||
* representation that can be used by the {@link QueryEngine} implementation.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
*/
|
||||
public interface SortAccessor<T> {
|
||||
|
||||
@@ -25,7 +25,6 @@ import org.springframework.util.Assert;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
class SpelCriteriaAccessor implements CriteriaAccessor<SpelExpression> {
|
||||
|
||||
|
||||
@@ -25,7 +25,6 @@ import org.springframework.expression.spel.standard.SpelExpressionParser;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
*/
|
||||
public class SpelPropertyComparator<T> implements Comparator<T> {
|
||||
|
||||
@@ -33,7 +33,6 @@ import org.springframework.expression.spel.standard.SpelExpressionParser;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
*/
|
||||
class SpelQueryEngine<T extends KeyValueAdapter> extends QueryEngine<KeyValueAdapter, SpelExpression, Comparator<?>> {
|
||||
|
||||
@@ -30,7 +30,6 @@ import org.springframework.util.comparator.CompoundComparator;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
class SpelSortAccessor implements SortAccessor<Comparator<?>> {
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@ import org.springframework.dao.UncategorizedDataAccessException;
|
||||
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class UncategorizedKeyValueException extends UncategorizedDataAccessException {
|
||||
|
||||
|
||||
@@ -28,7 +28,6 @@ import org.springframework.data.mapping.model.SimpleTypeHolder;
|
||||
* Most trivial implementation of {@link PersistentProperty}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValuePersistentProperty extends AnnotationBasedPersistentProperty<KeyValuePersistentProperty> {
|
||||
|
||||
|
||||
@@ -26,7 +26,6 @@ import org.springframework.data.util.TypeInformation;
|
||||
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValueMappingContext extends
|
||||
AbstractMappingContext<BasicPersistentEntity<?, KeyValuePersistentProperty>, KeyValuePersistentProperty> {
|
||||
|
||||
@@ -19,7 +19,6 @@ import org.springframework.data.domain.Sort;
|
||||
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T> Criteria type
|
||||
*/
|
||||
public class KeyValueQuery<T> {
|
||||
|
||||
@@ -21,7 +21,6 @@ import org.springframework.data.repository.PagingAndSortingRepository;
|
||||
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
* @param <ID>
|
||||
*/
|
||||
|
||||
@@ -41,7 +41,6 @@ import org.springframework.util.CollectionUtils;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValuePartTreeQuery implements RepositoryQuery {
|
||||
|
||||
|
||||
@@ -34,7 +34,6 @@ import org.springframework.expression.spel.standard.SpelExpressionParser;
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
public class SpelQueryCreator extends AbstractQueryCreator<KeyValueQuery<SpelExpression>, String> {
|
||||
|
||||
|
||||
@@ -45,7 +45,6 @@ import org.springframework.util.ClassUtils;
|
||||
* {@link org.springframework.data.keyvalue.repository.KeyValueRepository}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValueRepositoryFactory extends RepositoryFactorySupport {
|
||||
|
||||
@@ -145,7 +144,6 @@ public class KeyValueRepositoryFactory extends RepositoryFactorySupport {
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
*/
|
||||
private static class KeyValueQueryLookupStrategy implements QueryLookupStrategy {
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@ import org.springframework.data.repository.query.parser.AbstractQueryCreator;
|
||||
* {@link org.springframework.beans.factory.FactoryBean} to create {@link KeyValueRepository}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class KeyValueRepositoryFactoryBean<T extends Repository<S, ID>, S, ID extends Serializable> extends
|
||||
RepositoryFactoryBeanSupport<T, S, ID> {
|
||||
|
||||
@@ -42,7 +42,6 @@ import com.mysema.query.types.path.PathBuilder;
|
||||
* {@link KeyValueRepository} implementation capable of executing {@link Predicate}s using {@link CollQuery}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
* @param <ID>
|
||||
*/
|
||||
|
||||
@@ -31,7 +31,6 @@ import org.springframework.util.Assert;
|
||||
/**
|
||||
* @author Christoph Strobl
|
||||
* @author Oliver Gierke
|
||||
* @since 1.10
|
||||
* @param <T>
|
||||
* @param <ID>
|
||||
*/
|
||||
|
||||
@@ -30,7 +30,6 @@ import org.springframework.util.ClassUtils;
|
||||
* {@link KeyValueAdapter} implementation for {@link Map}.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 1.10
|
||||
*/
|
||||
public class MapKeyValueAdapter extends AbstractKeyValueAdapter {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user