X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=aai-schema-ingest%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fvalidation%2Fedges%2FEdgeRuleValidator.java;h=309d894569162dc5fb46fdef22ad8537d3a14810;hb=a86d6a6644d6de3f3f814cd6e25cfe2213d5dd05;hp=34c603aa06b84fddc84623224b98c884dad9f330;hpb=a395fa69a28a04d0a667fe458b4f10497a1d6794;p=aai%2Faai-common.git diff --git a/aai-schema-ingest/src/main/java/org/onap/aai/validation/edges/EdgeRuleValidator.java b/aai-schema-ingest/src/main/java/org/onap/aai/validation/edges/EdgeRuleValidator.java index 34c603aa..309d8945 100644 --- a/aai-schema-ingest/src/main/java/org/onap/aai/validation/edges/EdgeRuleValidator.java +++ b/aai-schema-ingest/src/main/java/org/onap/aai/validation/edges/EdgeRuleValidator.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ - * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017-18 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. @@ -16,8 +16,6 @@ * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= - * - * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ package org.onap.aai.validation.edges; @@ -26,14 +24,13 @@ import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.Set; import org.onap.aai.edges.JsonIngestor; import org.onap.aai.edges.TypeAlphabetizer; import org.onap.aai.edges.enums.EdgeField; import org.onap.aai.setup.ConfigTranslator; -import org.onap.aai.setup.Version; +import org.onap.aai.setup.SchemaVersion; import org.onap.aai.validation.SchemaErrorStrategy; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @@ -45,7 +42,7 @@ import com.jayway.jsonpath.DocumentContext; */ @Component public class EdgeRuleValidator { - private Map> versionJsonFilesMap; + private Map> versionJsonFilesMap; private final SchemaErrorStrategy strat; protected final EdgeFieldsValidationModule fieldValidator; protected final UniqueLabelValidationModule labelValidator; @@ -69,8 +66,8 @@ public class EdgeRuleValidator { public boolean validate() { - for (Entry> verEntry : versionJsonFilesMap.entrySet()) { - Version v = verEntry.getKey(); + for (Map.Entry> verEntry : versionJsonFilesMap.entrySet()) { + SchemaVersion v = verEntry.getKey(); List ctxs = verEntry.getValue(); List> rules = collectRules(ctxs); Set nodeTypePairs = new HashSet<>(); @@ -89,7 +86,7 @@ public class EdgeRuleValidator { handleResult(typeValidator.validate(nodeTypePairs, v)); } - + return strat.isOK(); }