ClientEndpoint needs to be instantiabe
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / std / AutoClientEnd.java
index 5423149..6a1c586 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * PolicyEngineAPI
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -56,10 +56,6 @@ public class AutoClientEnd {
        private static boolean error = false;
        private static Logger logger = FlexLogger.getLogger(AutoClientEnd.class.getName());
        
-       private AutoClientEnd() {
-               // Empty constructor
-       }
-       
        public static void setAuto(NotificationScheme scheme,
                        NotificationHandler handler) {
                AutoClientEnd.scheme = scheme;
@@ -82,7 +78,7 @@ public class AutoClientEnd {
                AutoClientEnd.url = url;
                
                if (scheme == null || handler == null ||
-                       ! (scheme.equals(NotificationScheme.AUTO_ALL_NOTIFICATIONS) &&
+                       ! (scheme.equals(NotificationScheme.AUTO_ALL_NOTIFICATIONS) ||
                                        scheme.equals(NotificationScheme.AUTO_NOTIFICATIONS) ) ||
                        AutoClientEnd.client != null) {
                        return;