diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2022-11-04 11:50:17 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2022-11-04 11:50:17 -0500 |
commit | 8dece848c0775833013e2fa6ff801478fccb4a52 (patch) | |
tree | 6d74ce523936844ef8255beb18c269e83b549a25 /models-interactions/model-actors/actor.sdnr/src/main | |
parent | af8eea569e5e91f09c454746c177885597ea2c32 (diff) |
Create A1P actor to talk to A1 PMS.
This relates to the support for the SON use case.
Issue-ID: POLICY-4444
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: I2c67ec282c77d42b9e8a11cc70cb518976075a00
Diffstat (limited to 'models-interactions/model-actors/actor.sdnr/src/main')
-rw-r--r-- | models-interactions/model-actors/actor.sdnr/src/main/java/org/onap/policy/controlloop/actor/sdnr/SdnrActor.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models-interactions/model-actors/actor.sdnr/src/main/java/org/onap/policy/controlloop/actor/sdnr/SdnrActor.java b/models-interactions/model-actors/actor.sdnr/src/main/java/org/onap/policy/controlloop/actor/sdnr/SdnrActor.java index de7691e0e..91b51a917 100644 --- a/models-interactions/model-actors/actor.sdnr/src/main/java/org/onap/policy/controlloop/actor/sdnr/SdnrActor.java +++ b/models-interactions/model-actors/actor.sdnr/src/main/java/org/onap/policy/controlloop/actor/sdnr/SdnrActor.java @@ -3,7 +3,7 @@ * ONAP * ================================================================================ * Copyright (C) 2018 Wipro Limited Intellectual Property. All rights reserved. - * Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019-2020, 2022 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. @@ -40,8 +40,8 @@ public class SdnrActor extends BidirectionalTopicActor<BidirectionalTopicActorPa public SdnrActor() { super(NAME, BidirectionalTopicActorParams.class); - addOperator(new BidirectionalTopicOperator(NAME, SdnrOperation.NAME, this, SdnrOperation.SELECTOR_KEYS, - SdnrOperation::new)); + addOperator(new BidirectionalTopicOperator(NAME, SdnrOperation.NAME, this, + SdnrOperation.SELECTOR_KEYS, SdnrOperation::new)); } @Override |