diff options
author | k.kedron <k.kedron@partner.samsung.com> | 2021-08-16 13:55:46 +0200 |
---|---|---|
committer | Pawel Slowikowski <p.slowikows2@samsung.com> | 2021-08-31 08:48:10 +0000 |
commit | 007b856430d1dbc11e21192913326071d3f3055f (patch) | |
tree | 6aa9f449acd46d2955b55fefe058c86f17f50fd6 | |
parent | e06fd1b48bc2ab566681b82d63f9ebb3a18ec78d (diff) |
Update SleepingCellDetector
To support Honolulu PMS API (1.1.0)
Issue-ID: INT-1947
Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com>
Change-Id: I658e6191f0f3ee8019f3b3a9067b721718bee3a3
2 files changed, 2 insertions, 2 deletions
diff --git a/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/entity/ServiceRegistrationPayload.java b/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/entity/ServiceRegistrationPayload.java index b73fca1..61ddd3f 100644 --- a/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/entity/ServiceRegistrationPayload.java +++ b/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/entity/ServiceRegistrationPayload.java @@ -23,7 +23,7 @@ import lombok.NoArgsConstructor; @AllArgsConstructor @Builder public class ServiceRegistrationPayload { - private String callBackUrl; + private String callbackUrl; private String keepAliveIntervalSeconds; private String serviceName; } diff --git a/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/service/PolicyAgentClient.java b/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/service/PolicyAgentClient.java index e6d3566..4e05fdf 100644 --- a/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/service/PolicyAgentClient.java +++ b/sleepingcelldetector/src/main/java/org/onap/rapp/sleepingcelldetector/service/PolicyAgentClient.java @@ -143,7 +143,7 @@ public class PolicyAgentClient { private ServiceRegistrationPayload buildPayload() { return ServiceRegistrationPayload.builder() - .callBackUrl(POLICY_ACTOR_CALLBACK_URL) + .callbackUrl(POLICY_ACTOR_CALLBACK_URL) .keepAliveIntervalSeconds("20") .serviceName(SCD_SERVICE_NAME) .build(); |