summaryrefslogtreecommitdiffstats
path: root/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java
diff options
context:
space:
mode:
authorMichal Cmarada <michal.cmarada@pantheon.tech>2018-09-25 11:15:35 +0200
committerMichal Cmarada <michal.cmarada@pantheon.tech>2018-09-25 11:22:18 +0200
commit556a0f59abc9b09005d40945bc20948d69e4f98e (patch)
tree76d795ae59aba49521fc4fdc7d65062c946147be /infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java
parent46bcceb927b1bce07c1c9517f45470703293eb84 (diff)
Bump ODL dependencies to Fluorine (HONEYCOMB-433)
Change-Id: I142ebd2899272feff00abe7d4bae708f093ee3ec Signed-off-by: Michal Cmarada <michal.cmarada@pantheon.tech>
Diffstat (limited to 'infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java')
-rw-r--r--infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java
index e058964a0..daf6f3566 100644
--- a/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java
+++ b/infra/translate-utils/src/main/java/io/fd/honeycomb/translate/util/read/ReflexiveListReaderCustomizer.java
@@ -59,14 +59,14 @@ public class ReflexiveListReaderCustomizer<C extends DataObject & Identifiable<K
public void readCurrentAttributes(final InstanceIdentifier<C> id, final B builder, final ReadContext context)
throws ReadFailedException {
final Optional<Method> method =
- ReflectionUtils.findMethodReflex(builder.getClass(), "setKey",
+ ReflectionUtils.findMethodReflex(builder.getClass(), "withKey",
Collections.singletonList(keyType), builder.getClass());
- checkArgument(method.isPresent(), "Unable to setKey to %s", builder);
+ checkArgument(method.isPresent(), "Unable to build withKey for %s", builder);
try {
method.get().invoke(builder, ((KeyedInstanceIdentifier)id).getKey());
} catch (IllegalAccessException | InvocationTargetException e) {
- throw new IllegalArgumentException("Unable to setKey to " + builder, e);
+ throw new IllegalArgumentException("Unable to build withKey for " + builder, e);
}
}