Polished JavaDoc.

This commit is contained in:
Oliver Gierke
2010-12-29 14:50:55 +01:00
parent 6ddc56dbb2
commit e9475dc76a
4 changed files with 5 additions and 8 deletions

View File

@@ -75,8 +75,8 @@ public class AuditingEntityListener<T> implements InitializingBean {
/**
* Setter do determine if {@link Auditable#setCreated(DateTime)} and
* {@link Auditable#setLastModified(DateTime)} shall be filled with the
* Setter do determine if {@link Auditable#setCreatedDate(DateTime)} and
* {@link Auditable#setLastModifiedDate(DateTime)} shall be filled with the
* current Java time. Defaults to {@code true}. One might set this to
* {@code false} to use database features to set entity time.
*

View File

@@ -16,7 +16,6 @@
package org.springframework.data.jpa.repository.query;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import org.springframework.data.repository.query.Parameters;
import org.springframework.data.repository.query.RepositoryQuery;
@@ -24,9 +23,7 @@ import org.springframework.util.Assert;
/**
* Abstract base class to implement {@link RepositoryQuery}s. Simply looks up a
* JPA {@link Query} through {@link #createQuery(EntityManager, Parameters)} and
* executes it.
* Abstract base class to implement {@link RepositoryQuery}s.
*
* @author Oliver Gierke
*/

View File

@@ -173,7 +173,7 @@ public class JpaQueryLookupStrategy {
/**
* Creates a {@link QueryLookupStrategy} for the given {@link EntityManager}
* and {@link QueryLookupStrategy.Key}.
* and {@link Key}.
*
* @param em
* @param key

View File

@@ -76,7 +76,7 @@ public class JpaRepositoryFactory extends RepositoryFactorySupport {
* @param <ID>
* @param domainClass
* @param entityManager
* @see #getTargetRepository(Class)
* @see #getTargetRepository(Class, Class)
* @return
*/
protected <T, ID extends Serializable> RepositorySupport<T, ID> getTargetRepository(