From 5e484ea73840e0b329be09730e009ae22c9962dc Mon Sep 17 00:00:00 2001 From: rameshiyer27 Date: Wed, 31 Jan 2024 15:02:48 +0000 Subject: Remove Dmaap from apex-pdp Issue-ID: POLICY-4402 Signed-off-by: rameshiyer27 Change-Id: I76c284b6ff7ec0ce77189f3f2bc93d5b91d4eb24 --- .../CarrierTechnologyParameters.java | 30 +++------------------- 1 file changed, 3 insertions(+), 27 deletions(-) (limited to 'services/services-engine/src/main/java/org/onap/policy/apex/service/parameters/carriertechnology/CarrierTechnologyParameters.java') diff --git a/services/services-engine/src/main/java/org/onap/policy/apex/service/parameters/carriertechnology/CarrierTechnologyParameters.java b/services/services-engine/src/main/java/org/onap/policy/apex/service/parameters/carriertechnology/CarrierTechnologyParameters.java index 7515de8a1..7d52fe1cf 100644 --- a/services/services-engine/src/main/java/org/onap/policy/apex/service/parameters/carriertechnology/CarrierTechnologyParameters.java +++ b/services/services-engine/src/main/java/org/onap/policy/apex/service/parameters/carriertechnology/CarrierTechnologyParameters.java @@ -2,6 +2,7 @@ * ============LICENSE_START======================================================= * Copyright (C) 2016-2018 Ericsson. All rights reserved. * Modifications Copyright (C) 2021 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. @@ -22,6 +23,7 @@ package org.onap.policy.apex.service.parameters.carriertechnology; import lombok.AccessLevel; +import lombok.Getter; import lombok.NoArgsConstructor; import org.onap.policy.common.parameters.ParameterGroupImpl; import org.onap.policy.common.parameters.ParameterRuntimeException; @@ -40,6 +42,7 @@ import org.onap.policy.common.parameters.annotations.NotNull; * * @author Liam Fallon (liam.fallon@ericsson.com) */ +@Getter @NotNull @NotBlank @NoArgsConstructor(access = AccessLevel.PROTECTED) @@ -53,15 +56,6 @@ public abstract class CarrierTechnologyParameters extends ParameterGroupImpl { private @ClassName String eventProducerPluginClass = null; private @ClassName String eventConsumerPluginClass = null; - /** - * Gets the label of the carrier technology. - * - * @return the label of the carrier technology - */ - public String getLabel() { - return label; - } - /** * Sets the label of the carrier technology. * @@ -75,15 +69,6 @@ public abstract class CarrierTechnologyParameters extends ParameterGroupImpl { } } - /** - * Gets the event producer plugin class. - * - * @return the event producer plugin class - */ - public String getEventProducerPluginClass() { - return eventProducerPluginClass; - } - /** * Sets the event producer plugin class. * @@ -97,15 +82,6 @@ public abstract class CarrierTechnologyParameters extends ParameterGroupImpl { } } - /** - * Gets the event consumer plugin class. - * - * @return the event consumer plugin class - */ - public String getEventConsumerPluginClass() { - return eventConsumerPluginClass; - } - /** * Sets the event consumer plugin class. * -- cgit 1.2.3-korg