SGF-727 - Remove all git merge conflict tags in SDG source code Javadoc.

This commit is contained in:
John Blum
2018-03-21 16:38:12 -07:00
parent 379e975acf
commit 435130b67b
7 changed files with 8 additions and 30 deletions

View File

@@ -70,8 +70,7 @@ public class GemfireTemplate extends GemfireAccessor implements GemfireOperation
private Region<?, ?> regionProxy;
public GemfireTemplate() {
}
public GemfireTemplate() { }
public <K, V> GemfireTemplate(Region<K, V> region) {
setRegion(region);

View File

@@ -63,24 +63,15 @@ import org.springframework.util.ReflectionUtils;
import org.springframework.util.StringUtils;
/**
<<<<<<< HEAD
* Abstract base class and Spring {@link FactoryBean} for constructing and initializing a GemFire {@link Region}.
=======
* Abstract Spring {@link FactoryBean} base class extended by other SDG {@link FactoryBean FactoryBeans} used to
* construct, configure and initialize peer {@link Region Regions}.
*
* This {@link FactoryBean} allows for very easy and flexible creation of peer {@link Region}.
* For client {@link Region Regions}, however, see the {@link ClientRegionFactoryBean}.
>>>>>>> c22ebe6... DATAGEODE-12 - Introduce Spring Configurers to flexibly alter Spring Data GemFire configuration when using Annotation config.
*
* @author Costin Leau
* @author David Turanski
* @author John Blum
<<<<<<< HEAD
* @see org.springframework.beans.factory.DisposableBean
* @see org.springframework.context.SmartLifecycle
* @see org.springframework.data.gemfire.RegionLookupFactoryBean
=======
* @see org.apache.geode.cache.Cache
* @see org.apache.geode.cache.CacheListener
* @see org.apache.geode.cache.CacheLoader
@@ -100,7 +91,6 @@ import org.springframework.util.StringUtils;
* @see org.springframework.data.gemfire.RegionLookupFactoryBean
* @see org.springframework.data.gemfire.client.ClientRegionFactoryBean
* @see org.springframework.data.gemfire.config.annotation.RegionConfigurer
>>>>>>> c22ebe6... DATAGEODE-12 - Introduce Spring Configurers to flexibly alter Spring Data GemFire configuration when using Annotation config.
*/
@SuppressWarnings("unused")
public abstract class RegionFactoryBean<K, V> extends RegionLookupFactoryBean<K, V>
@@ -968,8 +958,6 @@ public abstract class RegionFactoryBean<K, V> extends RegionLookupFactoryBean<K,
/**
* @inheritDoc
<<<<<<< HEAD
=======
*/
@Override
public void stop(Runnable callback) {
@@ -979,7 +967,6 @@ public abstract class RegionFactoryBean<K, V> extends RegionLookupFactoryBean<K,
/**
* @inheritDoc
>>>>>>> fffb2b0... SGF-547 - Configure Eviction with annotations.
*/
@Override
public void stop() {

View File

@@ -424,15 +424,11 @@ public class ClientCacheFactoryBean extends CacheFactoryBean implements Applicat
}
/**
<<<<<<< HEAD
* @inheritDoc
=======
* Null-safe internal method used to close the {@link ClientCache} and preserve durability.
*
* @param cache {@link GemFireCache} to close.
* @see org.apache.geode.cache.client.ClientCache#close(boolean)
* @see #isKeepAlive()
>>>>>>> c22ebe6... DATAGEODE-12 - Introduce Spring Configurers to flexibly alter Spring Data GemFire configuration when using Annotation config.
*/
@Override
protected void close(GemFireCache cache) {
@@ -440,14 +436,10 @@ public class ClientCacheFactoryBean extends CacheFactoryBean implements Applicat
}
/**
<<<<<<< HEAD
* @inheritDoc
=======
* Returns the {@link Class} type of the {@link GemFireCache} produced by this {@link ClientCacheFactoryBean}.
*
* @return the {@link Class} type of the {@link GemFireCache} produced by this {@link ClientCacheFactoryBean}.
* @see org.springframework.beans.factory.FactoryBean#getObjectType()
>>>>>>> c22ebe6... DATAGEODE-12 - Introduce Spring Configurers to flexibly alter Spring Data GemFire configuration when using Annotation config.
*/
@Override
@SuppressWarnings("unchecked")

View File

@@ -76,6 +76,7 @@ public class GemfirePersistentEntity<T> extends BasicPersistentEntity<T, Gemfire
/* (non-Javadoc) */
protected static String getAnnotationAttributeStringValue(Annotation annotation, String attributeName) {
return AnnotationAttributes.fromMap(AnnotationUtils.getAnnotationAttributes(annotation))
.getString(attributeName);
}

View File

@@ -41,7 +41,6 @@ public class GemfirePersistentProperty extends AnnotationBasedPersistentProperty
protected static final Set<String> SUPPORTED_IDENTIFIER_NAMES = asSet("id");
/**
* Constructs an instance of {@link GemfirePersistentProperty} initialized with entity persistent property
* information (meta-data).
@@ -57,6 +56,7 @@ public class GemfirePersistentProperty extends AnnotationBasedPersistentProperty
*/
public GemfirePersistentProperty(Property property, PersistentEntity<?, GemfirePersistentProperty> owner,
SimpleTypeHolder simpleTypeHolder) {
super(property, owner, simpleTypeHolder);
}

View File

@@ -23,7 +23,6 @@ import java.lang.reflect.Method;
import java.util.Optional;
import org.apache.geode.cache.Region;
import org.springframework.context.ApplicationContext;
import org.springframework.data.gemfire.GemfireTemplate;
import org.springframework.data.gemfire.mapping.GemfirePersistentEntity;
import org.springframework.data.gemfire.mapping.GemfirePersistentProperty;