From 4fcf04234e5e1b1d4338f12d982a45edf317d795 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Wed, 13 Jun 2018 16:50:59 +0100 Subject: Add YAML plugin and cleanup for checkstyle Bringing in the APEX YAML plugin, allows events with YAML bodies to be consumed by APEX. Also clean up of event protocol interface to make it not specific for JSON. Also some checkstyle changes on classes impacted by event protocol interface change. Change-Id: I7c3867ac508096fd8acad2488e61db87dfa1d6bd Issue-ID: POLICY-862 Signed-off-by: liamfallon --- .../dummyclasses/SuperTokenDelimitedEventProtocolParameters.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services/services-engine/src/test') diff --git a/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/dummyclasses/SuperTokenDelimitedEventProtocolParameters.java b/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/dummyclasses/SuperTokenDelimitedEventProtocolParameters.java index 99f938e10..bac271319 100644 --- a/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/dummyclasses/SuperTokenDelimitedEventProtocolParameters.java +++ b/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/dummyclasses/SuperTokenDelimitedEventProtocolParameters.java @@ -46,7 +46,7 @@ public class SuperTokenDelimitedEventProtocolParameters extends EventProtocolTex this.setLabel(SUPER_TOKEN_EVENT_PROTOCOL_LABEL); // Set the starting and ending delimiters for text blocks of JSON events - this.setDelimiterToken(SUPER_TOKEN_DELIMITER); + this.setStartDelimiterToken(SUPER_TOKEN_DELIMITER); // Set the event protocol plugin class this.setEventProtocolPluginClass(SuperTokenDelimitedEventConverter.class.getCanonicalName()); -- cgit 1.2.3-korg