Fix Javadoc.

This commit is contained in:
John Blum
2018-05-23 18:51:17 -07:00
parent 05267ee8bf
commit efc645b3a7
4 changed files with 11 additions and 5 deletions

View File

@@ -30,7 +30,6 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi
* @author John Blum
* @see org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport
* @see org.springframework.boot.data.geode.autoconfigure.RepositoriesAutoConfiguration
* @see EnableGemFireRepositoriesConfiguration
* @see org.springframework.data.gemfire.repository.config.EnableGemfireRepositories
* @see org.springframework.data.gemfire.repository.config.GemfireRepositoryConfigurationExtension
* @since 1.0.0

View File

@@ -23,9 +23,11 @@ import org.apache.geode.cache.execute.FunctionException;
import org.apache.geode.cache.execute.ResultCollector;
/**
* The AbstractResultCollector class...
* The {@link AbstractResultCollector} class is an abstract base implementation of the {@link ResultCollector} interface
* encapsulating common functionality for collecting results from a Function execution.
*
* @author John Blum
* @see org.apache.geode.cache.execute.ResultCollector
* @since 1.0.0
*/
@SuppressWarnings("unused")

View File

@@ -20,14 +20,19 @@ import java.util.Collections;
import java.util.Iterator;
import java.util.Optional;
import org.apache.geode.cache.execute.ResultCollector;
import org.apache.geode.distributed.DistributedMember;
/**
* The SingleResultReturningCollector class...
* The {@link SingleResultReturningCollector} class is an implementation of the {@link ResultCollector} interface
* which returns a single {@link Object result}.
*
* @author John Blum
* @see org.apache.geode.cache.execute.ResultCollector
* @see org.springframework.data.gemfire.function.execution.AbstractResultCollector
* @since 1.0.0
*/
@SuppressWarnings("unused")
public class SingleResultReturningCollector<T> extends AbstractResultCollector<T, T> {
@Override

View File

@@ -16,13 +16,13 @@
package org.springframework.boot.data.geode.function.executions;
import org.junit.experimental.theories.suppliers.TestedOn;
import org.springframework.data.gemfire.function.annotation.OnRegion;
/**
* The Calculator class...
* The {@link Calculator} interface defines Apache Geode/Pivotal GemFire Functions.
*
* @author John Blum
* @see org.springframework.data.gemfire.function.annotation.OnRegion
* @since 1.0.0
*/
@SuppressWarnings("all")