diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2023-03-20 10:55:32 +0000 |
---|---|---|
committer | mpriyank <priyank.maheshwari@est.tech> | 2023-03-20 11:06:15 +0000 |
commit | ec5d74d52b3f7b10a5002be5bb9a386927300cfd (patch) | |
tree | dbaa725f58ec99fa5fef7ecafb213ec3683ad512 /cps-ncmp-service/src/main | |
parent | f0fdc500ec1bfd3b8a477e9cc862dd014828669d (diff) |
Avc Event prop rename
- rename the eventTarget property as eventSource as per the schema in
the spike
- fixed the integration test and sample file
Issue-ID: CPS-1554
Change-Id: Ieb8b749c6f64d69d87cacadae17a4589e9908cf2
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'cps-ncmp-service/src/main')
-rw-r--r-- | cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/notifications/avc/AvcEventMapper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/notifications/avc/AvcEventMapper.java b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/notifications/avc/AvcEventMapper.java index 531de46414..b6dc467773 100644 --- a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/notifications/avc/AvcEventMapper.java +++ b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/notifications/avc/AvcEventMapper.java @@ -38,7 +38,7 @@ public interface AvcEventMapper { @Mapping(source = "eventCorrelationId", target = "eventCorrelationId") @Mapping(source = "eventSchema", target = "eventSchema") @Mapping(source = "eventSchemaVersion", target = "eventSchemaVersion") - @Mapping(source = "eventTarget", target = "eventTarget") + @Mapping(source = "eventSource", target = "eventSource") @Mapping(source = "eventType", target = "eventType") AvcEvent toOutgoingAvcEvent(AvcEvent incomingAvcEvent); |