Fix code error in ControllerImpl class 59/78759/2
authorJoss Armstrong <joss.armstrong@ericsson.com>
Tue, 19 Feb 2019 14:00:41 +0000 (14:00 +0000)
committerTakamune Cho <takamune.cho@att.com>
Tue, 19 Feb 2019 16:50:05 +0000 (16:50 +0000)
Put in correct check for null ListenerClass attribute

Issue-ID: APPC-1463
Change-Id: I55cd4327f4718c320e3feaf71db7ac23f59a0986
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/impl/ControllerImpl.java

index 3368c55..cc9c718 100644 (file)
@@ -5,6 +5,8 @@
  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Copyright (C) 2017 Amdocs
+ * ================================================================================
+ * Modifications Copyright (C) 2019 Ericsson
  * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -63,7 +65,7 @@ public class ControllerImpl implements Controller {
     public ControllerImpl(Set<ListenerProperties> properties) {
         listeners = new HashMap<ListenerProperties, Listener>();
         for (ListenerProperties props : properties) {
-            if (props.getClass() != null) {
+            if (props.getListenerClass() != null) {
                 listeners.put(props, null);
             } else {
                 LOG.error(String.format(