From: Rodrigo Lima Date: Tue, 15 Sep 2020 20:46:21 +0000 (-0400) Subject: Add ownercheck side effect to enrichData method in dbserializer X-Git-Tag: 1.7.2~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=85baeee8c837dbf4483f74c9088d4cd7778273c6;p=aai%2Faai-common.git Add ownercheck side effect to enrichData method in dbserializer Issue-ID: AAI-3184 Signed-off-by: Rodrigo Lima Change-Id: I3c8b3d33613c5345fc767fb03f1c4be79a321acc --- diff --git a/aai-aaf-auth/pom.xml b/aai-aaf-auth/pom.xml index 9eeb34ec..464c6ac3 100644 --- a/aai-aaf-auth/pom.xml +++ b/aai-aaf-auth/pom.xml @@ -6,7 +6,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-aaf-auth diff --git a/aai-annotations/pom.xml b/aai-annotations/pom.xml index bc4ebb9e..02ddd3b8 100644 --- a/aai-annotations/pom.xml +++ b/aai-annotations/pom.xml @@ -27,7 +27,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-annotations diff --git a/aai-auth/pom.xml b/aai-auth/pom.xml index 1c64aaad..43e5d682 100644 --- a/aai-auth/pom.xml +++ b/aai-auth/pom.xml @@ -27,7 +27,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-auth diff --git a/aai-common-docker/aai-common-images/pom.xml b/aai-common-docker/aai-common-images/pom.xml index 24f0acbe..fa1bf9e3 100644 --- a/aai-common-docker/aai-common-images/pom.xml +++ b/aai-common-docker/aai-common-images/pom.xml @@ -25,11 +25,11 @@ org.onap.aai.aai-common aai-common-docker - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT aai-common-images - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT pom aai-aai-common-images Contains dockerfiles for aai-common images (alpine and ubuntu based). diff --git a/aai-common-docker/aai-haproxy-image/pom.xml b/aai-common-docker/aai-haproxy-image/pom.xml index ebbdede6..84de8e77 100644 --- a/aai-common-docker/aai-haproxy-image/pom.xml +++ b/aai-common-docker/aai-haproxy-image/pom.xml @@ -25,7 +25,7 @@ org.onap.aai.aai-common aai-common-docker - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT aai-haproxy-image diff --git a/aai-common-docker/pom.xml b/aai-common-docker/pom.xml index d6896f58..8be3cc2e 100644 --- a/aai-common-docker/pom.xml +++ b/aai-common-docker/pom.xml @@ -26,7 +26,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml diff --git a/aai-core/pom.xml b/aai-core/pom.xml index cf387c1b..60ef462e 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -26,7 +26,7 @@ limitations under the License. org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-core diff --git a/aai-core/src/main/java/org/onap/aai/serialization/db/DBSerializer.java b/aai-core/src/main/java/org/onap/aai/serialization/db/DBSerializer.java index 5b274ee2..14621e83 100644 --- a/aai-core/src/main/java/org/onap/aai/serialization/db/DBSerializer.java +++ b/aai-core/src/main/java/org/onap/aai/serialization/db/DBSerializer.java @@ -2287,7 +2287,8 @@ public class DBSerializer { private void enrichData(Introspector obj, Vertex self) throws AAIException { SideEffectRunner runner = - new SideEffectRunner.Builder(this.engine, this).addSideEffect(DataLinkReader.class).build(); + new SideEffectRunner.Builder(this.engine, this).addSideEffect(DataLinkReader.class) + .addSideEffect(OwnerCheck.class).build(); runner.execute(obj, self); } diff --git a/aai-els-onap-logging/pom.xml b/aai-els-onap-logging/pom.xml index 39204184..92359325 100644 --- a/aai-els-onap-logging/pom.xml +++ b/aai-els-onap-logging/pom.xml @@ -6,7 +6,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-els-onap-logging diff --git a/aai-failover/pom.xml b/aai-failover/pom.xml index 7af38e43..aa065ce1 100644 --- a/aai-failover/pom.xml +++ b/aai-failover/pom.xml @@ -5,7 +5,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml 4.0.0 diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 6c923d74..d370cc24 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -27,7 +27,7 @@ limitations under the License. org.onap.aai.aai-common aai-common - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT aai-parent aai-parent diff --git a/aai-rest/pom.xml b/aai-rest/pom.xml index 087da87a..51b183cb 100644 --- a/aai-rest/pom.xml +++ b/aai-rest/pom.xml @@ -29,7 +29,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-rest diff --git a/aai-schema-abstraction/pom.xml b/aai-schema-abstraction/pom.xml index 78423ed1..9296ea5d 100644 --- a/aai-schema-abstraction/pom.xml +++ b/aai-schema-abstraction/pom.xml @@ -28,7 +28,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml index c0b76da7..9538d060 100644 --- a/aai-schema-ingest/pom.xml +++ b/aai-schema-ingest/pom.xml @@ -26,7 +26,7 @@ limitations under the License. org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-schema-ingest diff --git a/aai-utils/pom.xml b/aai-utils/pom.xml index 70413b76..f8f27eea 100644 --- a/aai-utils/pom.xml +++ b/aai-utils/pom.xml @@ -29,7 +29,7 @@ org.onap.aai.aai-common aai-parent - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT ../aai-parent/pom.xml aai-utils diff --git a/pom.xml b/pom.xml index 7c4167df..ff784f51 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ org.onap.aai.aai-common aai-common - 1.7.1-SNAPSHOT + 1.7.2-SNAPSHOT pom aai-aai-common Contains all of the common code for resources and traversal repos diff --git a/version.properties b/version.properties index 6434a158..3ba886a4 100644 --- a/version.properties +++ b/version.properties @@ -5,7 +5,7 @@ major_version=1 minor_version=7 -patch_version=1 +patch_version=2 base_version=${major_version}.${minor_version}.${patch_version}