DATAGEODE-90 - Remove all git merge conflict tags in SDG source code Javadoc.

This commit is contained in:
John Blum
2018-03-21 16:50:58 -07:00
parent e67b395e9a
commit 781813448f
4 changed files with 12 additions and 13 deletions

View File

@@ -6,8 +6,8 @@ Make sure that:
--> -->
- [ ] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [ ] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc).
- [ ] There is a ticket in the bug tracker for the project in our [JIRA](https://jira.spring.io/browse/SGF). - [ ] You created a [JIRA](https://jira.spring.io/browse/DATAGEODE) ticket in the bug tracker for the project.
- [ ] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Dont submit any formatting related changes. - [ ] You formatted the code according to the source code style provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have specifically applied them to your changes. Do not submit any formatting related changes.
- [ ] You submit test cases (unit or integration tests) that back your changes. - [ ] You submitted test cases (Unit or Integration Tests) backing your changes.
- [ ] You added yourself as author in the headers of the classes you touched. Amend the date range in the Apache license header if needed. For new types, add the license header (copy from another file and set the current year only). - [ ] You added yourself as the author in the headers of the classes you touched. Amend the date range in the Apache license header if needed. For new types, add the license header (copy from another file and set the current year only).
- [ ] If applicable, you have complied with and taken steps necessary to report any security vulnerabilities at [Pivotal Security Reporting](https://pivotal.io/security#reporting).

View File

@@ -230,10 +230,7 @@ public abstract class RegionLookupFactoryBean<K, V> extends AbstractFactoryBeanS
* *
* @param name {@link Region} name. * @param name {@link Region} name.
* @see #setBeanName(String) * @see #setBeanName(String)
<<<<<<< HEAD
* @see org.apache.geode.cache.Region#getFullPath() * @see org.apache.geode.cache.Region#getFullPath()
=======
>>>>>>> fffb2b0... SGF-547 - Configure Eviction with annotations.
*/ */
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;

View File

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

View File

@@ -34,7 +34,7 @@ import org.springframework.lang.Nullable;
* generated from {@link Repository} {@link QueryMethod query methods}, and give a developer an opportunity, * generated from {@link Repository} {@link QueryMethod query methods}, and give a developer an opportunity,
* via the callback, to further process the generated {@link QUERY query}. * via the callback, to further process the generated {@link QUERY query}.
* *
* {@link QueryPostProcessor QueryPostProcessors} can be used on both generated {@link QUERY queries} * {@link QueryPostProcessor QueryPostProcessors} can be used on both {@literal generated} {@link QUERY queries}
* and {@literal manual} {@link QUERY queries}. {@literal Manual} {@link QUERY queries} are defined as * and {@literal manual} {@link QUERY queries}. {@literal Manual} {@link QUERY queries} are defined as
* {@link QUERY queries} specified using SDG's {@link Query @Query} annotation or by defining a {@literal named} * {@link QUERY queries} specified using SDG's {@link Query @Query} annotation or by defining a {@literal named}
* {@link QUERY query} in a module-specific {@link Properties} files. * {@link QUERY query} in a module-specific {@link Properties} files.
@@ -43,6 +43,7 @@ import org.springframework.lang.Nullable;
* @param <T> {@link Class type} identifying the {@link Repository Repositories} to match on during registration. * @param <T> {@link Class type} identifying the {@link Repository Repositories} to match on during registration.
* @param <QUERY> {@link Class type} of the query to process. * @param <QUERY> {@link Class type} of the query to process.
* @see org.springframework.core.Ordered * @see org.springframework.core.Ordered
* @see org.springframework.data.gemfire.repository.Query
* @see org.springframework.data.repository.Repository * @see org.springframework.data.repository.Repository
* @see org.springframework.data.repository.query.QueryMethod * @see org.springframework.data.repository.query.QueryMethod
* @since 2.1.0 * @since 2.1.0
@@ -71,7 +72,7 @@ public interface QueryPostProcessor<T extends Repository, QUERY> extends Ordered
* Callback method invoked by the Spring Data (SD) {@link Repository} framework to allow the user to process * Callback method invoked by the Spring Data (SD) {@link Repository} framework to allow the user to process
* the given {@link QUERY query} and (possibly) return a new or modified version of the {@link QUERY query}. * the given {@link QUERY query} and (possibly) return a new or modified version of the {@link QUERY query}.
* *
* This callback is invoked for {@literal queries} generated from the SD {@link Repository} {@link QueryMethod} * This callback is invoked for {@literal queries} generated from a SD {@link Repository} {@link QueryMethod}
* signature as well as {@literal queries} specified and defined in {@link NamedQueries}, * signature as well as {@literal queries} specified and defined in {@link NamedQueries},
* or even using SDG's {@link Query @Query} annotation. * or even using SDG's {@link Query @Query} annotation.
* *
@@ -88,7 +89,7 @@ public interface QueryPostProcessor<T extends Repository, QUERY> extends Ordered
* Callback method invoked by the Spring Data (SD) {@link Repository} framework to allow the user to process * Callback method invoked by the Spring Data (SD) {@link Repository} framework to allow the user to process
* the given {@link QUERY query} and (possibly) return a new or modified version of the {@link QUERY query}. * the given {@link QUERY query} and (possibly) return a new or modified version of the {@link QUERY query}.
* *
* This callback is invoked for {@literal queries} generated from the SD {@link Repository} {@link QueryMethod} * This callback is invoked for {@literal queries} generated from a SD {@link Repository} {@link QueryMethod}
* signature as well as {@literal queries} specified and defined in {@link NamedQueries}, * signature as well as {@literal queries} specified and defined in {@link NamedQueries},
* or even using SDG's {@link Query @Query} annotation. * or even using SDG's {@link Query @Query} annotation.
* *
@@ -104,7 +105,7 @@ public interface QueryPostProcessor<T extends Repository, QUERY> extends Ordered
* Builder method used to compose, or combine this {@link QueryPostProcessor QueryPostProcessors} * Builder method used to compose, or combine this {@link QueryPostProcessor QueryPostProcessors}
* with the given {@link QueryPostProcessor}. * with the given {@link QueryPostProcessor}.
* *
* This {@link QueryPostProcessor} come before the given {@link QueryPostProcessor} in the processing chain. * This {@link QueryPostProcessor} will come before the given {@link QueryPostProcessor} in the processing chain.
* *
* @param queryPostProcessor {@link QueryPostProcessor} to compose with this {@link QueryPostProcessor}. * @param queryPostProcessor {@link QueryPostProcessor} to compose with this {@link QueryPostProcessor}.
* @return a composed {@link QueryPostProcessor} consisting of this {@link QueryPostProcessor} * @return a composed {@link QueryPostProcessor} consisting of this {@link QueryPostProcessor}
@@ -122,7 +123,7 @@ public interface QueryPostProcessor<T extends Repository, QUERY> extends Ordered
* Builder method used to compose, or combine this {@link QueryPostProcessor QueryPostProcessors} * Builder method used to compose, or combine this {@link QueryPostProcessor QueryPostProcessors}
* with the given {@link QueryPostProcessor}. * with the given {@link QueryPostProcessor}.
* *
* This {@link QueryPostProcessor} will come after this {@link QueryPostProcessor} in the processing chain. * This {@link QueryPostProcessor} will come after the given {@link QueryPostProcessor} in the processing chain.
* *
* @param queryPostProcessor {@link QueryPostProcessor} to compose with this {@link QueryPostProcessor}. * @param queryPostProcessor {@link QueryPostProcessor} to compose with this {@link QueryPostProcessor}.
* @return a composed {@link QueryPostProcessor} consisting of the given {@link QueryPostProcessor} * @return a composed {@link QueryPostProcessor} consisting of the given {@link QueryPostProcessor}