Added oparent to sdc main
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / validator / ValidationToolBL.java
index e373107..ff76296 100644 (file)
@@ -1,40 +1,54 @@
-package org.openecomp.sdc.asdctool.impl.validator;
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2019 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.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
 
-import java.util.List;
+package org.openecomp.sdc.asdctool.impl.validator;
 
 import org.openecomp.sdc.asdctool.impl.validator.executers.ValidatorExecuter;
-import org.openecomp.sdc.asdctool.impl.validator.utils.ReportManager;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.openecomp.sdc.common.log.wrappers.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
+import java.util.List;
+
 /**
  * Created by chaya on 7/3/2017.
  */
 @Component
 public class ValidationToolBL {
 
-    private static Logger log = LoggerFactory.getLogger(ValidationToolBL.class.getName());
+    private static Logger log = Logger.getLogger(ValidationToolBL.class.getName());
 
     @Autowired
     protected List<ValidatorExecuter> validators;
 
-    @Autowired
-    protected ReportManager reportManager;
-
     private boolean allValid = true;
 
-
     public boolean validateAll() {
         for (ValidatorExecuter validatorExec: validators) {
-            System.out.println("ValidatorExecuter "+validatorExec.getName()+" started");
+            log.debug("ValidatorExecuter "+validatorExec.getName()+" started");
             if (!validatorExec.executeValidations()) {
                 allValid = false;
-                System.out.println("ValidatorExecuter "+validatorExec.getName()+" finished with warnings");
+                log.debug("ValidatorExecuter "+validatorExec.getName()+" finished with warnings");
             }
             else {
-                System.out.println("ValidatorExecuter "+validatorExec.getName()+" finished successfully");
+                log.debug("ValidatorExecuter "+validatorExec.getName()+" finished successfully");
             }
         }
         return allValid;