Fix Sonar violations - ValidationErrorCodes 61/27261/3
authorAbhai Singh <Abhai.Singh@amdocs.com>
Wed, 3 Jan 2018 10:58:47 +0000 (16:28 +0530)
committerVitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com>
Wed, 3 Jan 2018 14:25:27 +0000 (14:25 +0000)
Removing the files since they are not referenced

Change-Id: Ica5835575222e96abc02132734b1e354d696ae35
Issue-ID: SDC-343
Signed-off-by: Abhai Singh <Abhai.Singh@amdocs.com>
openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationErrorCodes.java [deleted file]
openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationInvalidErrorBuilder.java [deleted file]

diff --git a/openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationErrorCodes.java b/openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationErrorCodes.java
deleted file mode 100644 (file)
index 6a7a010..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 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=========================================================
- */
-
-package org.openecomp.sdc.validation.errors;
-
-/**
- * Created by TALIO on 4/24/2016.
- */
-public class ValidationErrorCodes {
-  public static final String VALIDATION_INVALID = "VALIDATION_INVALID";
-
-}
diff --git a/openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationInvalidErrorBuilder.java b/openecomp-be/backend/openecomp-sdc-validation-manager/src/main/java/org/openecomp/sdc/validation/errors/ValidationInvalidErrorBuilder.java
deleted file mode 100644 (file)
index 7b0d325..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 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=========================================================
- */
-
-package org.openecomp.sdc.validation.errors;
-
-import org.openecomp.sdc.common.errors.BaseErrorBuilder;
-import org.openecomp.sdc.common.errors.ErrorCategory;
-import org.openecomp.sdc.datatypes.error.ErrorMessage;
-
-import java.util.List;
-import java.util.Map;
-
-public class ValidationInvalidErrorBuilder extends BaseErrorBuilder {
-  private static final String VALIDATION_INVALID_DETAILED_MSG = "File is invalid: %s";
-  private static final String VALIDATION_INVALID_MSG = "Validated file is invalid";
-
-  /**
-   * Instantiates a new Validation invalid error builder.
-   *
-   * @param errors the errors
-   */
-  public ValidationInvalidErrorBuilder(Map<String, List<ErrorMessage>> errors) {
-    getErrorCodeBuilder().withId(ValidationErrorCodes.VALIDATION_INVALID);
-    getErrorCodeBuilder().withCategory(ErrorCategory.APPLICATION);
-    getErrorCodeBuilder()
-        .withMessage(String.format(VALIDATION_INVALID_DETAILED_MSG, toString(errors)));
-  }
-
-  /**
-   * Instantiates a new Validation invalid error builder.
-   */
-  public ValidationInvalidErrorBuilder() {
-    getErrorCodeBuilder().withId(ValidationErrorCodes.VALIDATION_INVALID);
-    getErrorCodeBuilder().withCategory(ErrorCategory.APPLICATION);
-    getErrorCodeBuilder().withMessage(VALIDATION_INVALID_MSG);
-  }
-
-  private String toString(Map<String, List<ErrorMessage>> errors) {
-    StringBuilder sb = new StringBuilder();
-    errors.entrySet().stream()
-        .forEach(entry -> singleErrorToString(sb, entry.getKey(), entry.getValue()));
-    return sb.toString();
-  }
-
-  private void singleErrorToString(StringBuilder sb, String fileName, List<ErrorMessage> errors) {
-    sb.append(System.lineSeparator());
-    sb.append(fileName);
-    sb.append(sb.append(": "));
-    errors.stream().forEach(
-        error -> sb.append(error.getMessage()).append("[").append(error.getLevel()).append("], "));
-  }
-
-}