DATAKV-94 - Remove @since attributes from left over from sd-commons.

This commit is contained in:
Christoph Strobl
2014-12-10 15:12:40 +01:00
parent 680d32fff8
commit b8de114457
28 changed files with 0 additions and 29 deletions

View File

@@ -54,7 +54,6 @@ import org.springframework.data.annotation.Persistent;
* </pre>
*
* @author Christoph Strobl
* @since 1.10
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -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 {

View File

@@ -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> {

View File

@@ -22,7 +22,6 @@ import org.springframework.data.util.TypeInformation;
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
*/
public interface IdentifierGenerator {

View File

@@ -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) {

View File

@@ -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 {

View File

@@ -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> {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -42,7 +42,6 @@ import org.springframework.util.StringUtils;
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
*/
public class KeyValueTemplate implements KeyValueOperations {

View File

@@ -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>

View File

@@ -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> {

View File

@@ -25,7 +25,6 @@ import org.springframework.util.Assert;
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
*/
class SpelCriteriaAccessor implements CriteriaAccessor<SpelExpression> {

View File

@@ -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> {

View File

@@ -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<?>> {

View File

@@ -30,7 +30,6 @@ import org.springframework.util.comparator.CompoundComparator;
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
*/
class SpelSortAccessor implements SortAccessor<Comparator<?>> {

View File

@@ -19,7 +19,6 @@ import org.springframework.dao.UncategorizedDataAccessException;
/**
* @author Christoph Strobl
* @since 1.10
*/
public class UncategorizedKeyValueException extends UncategorizedDataAccessException {

View File

@@ -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> {

View File

@@ -26,7 +26,6 @@ import org.springframework.data.util.TypeInformation;
/**
* @author Christoph Strobl
* @since 1.10
*/
public class KeyValueMappingContext extends
AbstractMappingContext<BasicPersistentEntity<?, KeyValuePersistentProperty>, KeyValuePersistentProperty> {

View File

@@ -19,7 +19,6 @@ import org.springframework.data.domain.Sort;
/**
* @author Christoph Strobl
* @since 1.10
* @param <T> Criteria type
*/
public class KeyValueQuery<T> {

View File

@@ -21,7 +21,6 @@ import org.springframework.data.repository.PagingAndSortingRepository;
/**
* @author Christoph Strobl
* @since 1.10
* @param <T>
* @param <ID>
*/

View File

@@ -41,7 +41,6 @@ import org.springframework.util.CollectionUtils;
*
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
*/
public class KeyValuePartTreeQuery implements RepositoryQuery {

View File

@@ -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> {

View File

@@ -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 {

View File

@@ -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> {

View File

@@ -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>
*/

View File

@@ -31,7 +31,6 @@ import org.springframework.util.Assert;
/**
* @author Christoph Strobl
* @author Oliver Gierke
* @since 1.10
* @param <T>
* @param <ID>
*/

View File

@@ -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 {