diff options
author | 2021-09-10 20:15:37 +0000 | |
---|---|---|
committer | 2021-09-10 20:15:37 +0000 | |
commit | 859749a4143c104f6bd63392c8d2cb2839408029 (patch) | |
tree | 56a7794cf8f70cdcc6144c8001930c86b8f6d01b /participant/participant-impl/participant-impl-http | |
parent | 09d8a86e2126ccc9a12456ddead12a5fe8f58697 (diff) | |
parent | 6b3c8bd96a66160714f768b185290ed765e23ec7 (diff) |
Merge "Verify participant Simulator and messages"
Diffstat (limited to 'participant/participant-impl/participant-impl-http')
-rw-r--r-- | participant/participant-impl/participant-impl-http/src/test/java/utils/ToscaUtils.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/participant/participant-impl/participant-impl-http/src/test/java/utils/ToscaUtils.java b/participant/participant-impl/participant-impl-http/src/test/java/utils/ToscaUtils.java index cf71248c3..0bad5ed96 100644 --- a/participant/participant-impl/participant-impl-http/src/test/java/utils/ToscaUtils.java +++ b/participant/participant-impl/participant-impl-http/src/test/java/utils/ToscaUtils.java @@ -20,6 +20,8 @@ package utils; +import lombok.AccessLevel; +import lombok.NoArgsConstructor; import org.onap.policy.common.utils.coder.YamlJsonTranslator; import org.onap.policy.common.utils.resources.ResourceUtils; import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; @@ -27,7 +29,8 @@ import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; /** * Util class for Test scope. */ -public class ToscaUtils { +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public final class ToscaUtils { private static final YamlJsonTranslator yamlTranslator = new YamlJsonTranslator(); private static final String TOSCA_TEMPLATE_YAML = "src/test/resources/HttpParticipantConfig.yaml"; |