X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=models-base%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fmodels%2Fbase%2FPfConceptGetterImpl.java;h=fa1bbb4e782ac17f53bbb3cc91e302a994f366c6;hb=417e292dbaff7c30f86780e20da5fc95b108032a;hp=3c186bbf85c50921a95f778ab897486ab4c8d26d;hpb=1ada3a6368f340df653886c4229b192ce7a5fc35;p=policy%2Fmodels.git diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfConceptGetterImpl.java b/models-base/src/main/java/org/onap/policy/models/base/PfConceptGetterImpl.java index 3c186bbf8..fa1bbb4e7 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfConceptGetterImpl.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfConceptGetterImpl.java @@ -24,6 +24,7 @@ package org.onap.policy.models.base; import java.util.NavigableMap; import java.util.Set; import java.util.TreeSet; +import lombok.AllArgsConstructor; import org.onap.policy.common.utils.validation.Assertions; /** @@ -31,19 +32,12 @@ import org.onap.policy.common.utils.validation.Assertions; * * @param the type of concept on which the interface implementation is applied. */ +@AllArgsConstructor public class PfConceptGetterImpl implements PfConceptGetter { // The map from which to get concepts private final NavigableMap conceptMap; - /** - * Constructor that sets the concept map on which the getter methods in the interface will operate.. - * - * @param conceptMap the concept map on which the method will operate - */ - public PfConceptGetterImpl(final NavigableMap conceptMap) { - this.conceptMap = conceptMap; - } @Override public C get(final PfConceptKey conceptKey) {