SGF-457 - Clean up Javadoc warnings.

(cherry picked from commit 91619b8811116cb3c5096c73e3e683267d88086f)
Signed-off-by: John Blum <jblum@pivotal.io>
This commit is contained in:
John Blum
2016-01-08 16:46:59 -08:00
parent 03fa75736c
commit a4bbf2f342
2 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,8 @@ public class GemfireSimpleTypeHolder extends SimpleTypeHolder {
/**
* Constructs an instance of GemfireSimpleTypeHolder initialized with additional, custom simple types
* handled by GemFire along with register the default simple types.
* @see org.springframework.data.mapping.model.SimpleTypeHolder(Set, boolean)
*
* @see org.springframework.data.mapping.model.SimpleTypeHolder#SimpleTypeHolder(Set, boolean)
*/
public GemfireSimpleTypeHolder() {
super(CUSTOM_SIMPLE_TYPES, REGISTER_DEFAULTS);

View File

@@ -253,7 +253,7 @@ public class SnapshotServiceFactoryBean<K, V> implements FactoryBean<SnapshotSer
* or Region if initialized. In addition, this initialization method will perform the actual import.
*
* @throws Exception if the construction and initialization of the GemFire Snapshot Service fails.
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter#doImport(SnapshotMetadata[])
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter
* @see #getSuppressImportOnInit()
* @see #getImports()
* @see #create()
@@ -316,7 +316,7 @@ public class SnapshotServiceFactoryBean<K, V> implements FactoryBean<SnapshotSer
* Performs an export of the GemFire Cache or Region if configured.
*
* @throws Exception if the Cache/Region data export operation fails.
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter#doExport(SnapshotMetadata[])
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter
* @see #getExports()
* @see #getObject()
*/
@@ -330,14 +330,13 @@ public class SnapshotServiceFactoryBean<K, V> implements FactoryBean<SnapshotSer
* when details of the event match the criteria of this factory's constructed GemFire SnapshotService.
*
* @param event the SnapshotApplicationEvent triggering a GemFire Cache or Region data import/export.
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter
* @see org.springframework.data.gemfire.snapshot.event.ExportSnapshotApplicationEvent
* @see org.springframework.data.gemfire.snapshot.event.ImportSnapshotApplicationEvent
* @see org.springframework.data.gemfire.snapshot.event.SnapshotApplicationEvent
* @see #isMatch(SnapshotApplicationEvent)
* @see #resolveSnapshotMetadata(SnapshotApplicationEvent)
* @see #getObject()
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter#doExport(SnapshotMetadata[])
* @see org.springframework.data.gemfire.snapshot.SnapshotServiceFactoryBean.SnapshotServiceAdapter#doImport(SnapshotMetadata[])
*/
@Override
public void onApplicationEvent(SnapshotApplicationEvent<K, V> event) {