From eeb8a6a39d2bdd20bc54c11ac69700739d8faac1 Mon Sep 17 00:00:00 2001 From: "adheli.tavares" Date: Wed, 31 Jan 2024 10:39:45 +0000 Subject: Remove deprecated DMAAP dependency Issue-ID: POLICY-4402 Change-Id: Id3bf1f5833b7d6086345b3747505e2f57036d4ea Signed-off-by: adheli.tavares --- .../policy/coordination/CoordinationDirective.java | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) (limited to 'controlloop/common/coordination/src/main') diff --git a/controlloop/common/coordination/src/main/java/org/onap/policy/coordination/CoordinationDirective.java b/controlloop/common/coordination/src/main/java/org/onap/policy/coordination/CoordinationDirective.java index 6ba4ca478..a136c7ecc 100644 --- a/controlloop/common/coordination/src/main/java/org/onap/policy/coordination/CoordinationDirective.java +++ b/controlloop/common/coordination/src/main/java/org/onap/policy/coordination/CoordinationDirective.java @@ -3,6 +3,7 @@ * guard * ================================================================================ * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2024 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,16 +22,16 @@ package org.onap.policy.coordination; import java.util.List; +import lombok.Getter; +import lombok.Setter; +@Setter +@Getter public class CoordinationDirective { private List controlLoop; private String coordinationFunction; - public List getControlLoop() { - return controlLoop; - } - /** * gets the ith control loop. * @@ -41,18 +42,6 @@ public class CoordinationDirective { return controlLoop.get(index); } - public void setControlLoop(List controlLoop) { - this.controlLoop = controlLoop; - } - - public String getCoordinationFunction() { - return coordinationFunction; - } - - public void setCoordinationFunction(String coordinationFunction) { - this.coordinationFunction = coordinationFunction; - } - /** * toString. * -- cgit 1.2.3-korg