Skip to content

Commit f6eacd2

Browse files
committed
Polishing.
Add additional tests, add Javadoc to explain isEnclosingClassParameter() behavior. See #3038 Original pull request: #3039
1 parent 45b810a commit f6eacd2

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

src/main/java/org/springframework/data/mapping/Parameter.java

+11-4
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,8 @@ public boolean equals(@Nullable Object o) {
156156
return false;
157157
}
158158

159-
return Objects.equals(this.name, that.name)
160-
&& Objects.equals(this.type, that.type)
161-
&& Objects.equals(this.key, that.key)
162-
&& Objects.equals(this.entity, that.entity);
159+
return Objects.equals(this.name, that.name) && Objects.equals(this.type, that.type)
160+
&& Objects.equals(this.key, that.key) && Objects.equals(this.entity, that.entity);
163161
}
164162

165163
@Override
@@ -183,6 +181,15 @@ boolean maps(PersistentProperty<?> property) {
183181
return property.equals(referencedProperty);
184182
}
185183

184+
/**
185+
* Returns whether this parameter is a candidate for the enclosing class by checking the parameter type against
186+
* {@link Class#getEnclosingClass()} and whether the defining class is an inner non-static one.
187+
* <p>
188+
* Note that for a proper check the parameter position must be compared to ensure that only the first parameter (at
189+
* index {@code 0}/zero) qualifies as enclosing class instance parameter.
190+
*
191+
* @return {@literal true} if this parameter is a candidate for the enclosing class instance.
192+
*/
186193
boolean isEnclosingClassParameter() {
187194
return enclosingClassCache.get();
188195
}

src/test/java/org/springframework/data/mapping/ParameterUnitTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class ClassMember {
162162
static class StaticType {
163163

164164
class NonStaticInner {
165-
NonStaticInner(StaticType outer) {}
165+
NonStaticInner() {}
166166
}
167167

168168
static class StaticInner {

src/test/java/org/springframework/data/mapping/PreferredConstructorDiscovererUnitTests.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import java.lang.annotation.RetentionPolicy;
2323
import java.lang.annotation.Target;
2424
import java.util.Iterator;
25+
import java.util.List;
2526

2627
import org.junit.jupiter.api.Test;
2728
import org.springframework.beans.factory.annotation.Value;
@@ -99,8 +100,9 @@ void discoversInnerClassConstructorCorrectly() {
99100

100101
assertThat(constructor).isNotNull();
101102

102-
Parameter<?, P> parameter = constructor.getParameters().iterator().next();
103-
assertThat(constructor.isParentParameter(parameter)).isTrue();
103+
List<Parameter<Object, P>> parameters = constructor.getParameters();
104+
assertThat(constructor.isParentParameter(parameters.get(0))).isTrue();
105+
assertThat(constructor.isParentParameter(parameters.get(1))).isFalse();
104106
}
105107

106108
@Test // DATACMNS-1082, DATACMNS-1126
@@ -231,6 +233,7 @@ static class Outer {
231233

232234
class Inner {
233235

236+
public Inner(Outer outer) {}
234237
}
235238
}
236239

0 commit comments

Comments
 (0)