Tarka L'Herpiniere

Results 3 issues of Tarka L'Herpiniere

I need to be able to use this with a context that is a `Map`. The context is created at run time so I cant define it as a POJO....

Anyone got any idea how to replace text inside a text box? Currently it ignores any place holders inside text boxes.

We are using the client to submit a trigger using the following code: ```java Payload payload = Payload.Builder.newBuilder() .setSummary(createSummary(operation)) .setSource(operation.getAttribute().getId()) .setComponent(IdManager.getAncestorId(IdManager.Service.NODE_NODE, operation.getAttribute().getId())) .setGroup(IdManager.getAncestorId(IdManager.Service.NODE_ECU, operation.getAttribute().getId())) .setSeverity(convertHealthToSeverity(operation.getAttribute().getHealth())) .setTimestamp(OffsetDateTime.ofInstant(Instant.ofEpochSecond(operation.getTimestamp()), ZoneOffset.UTC)) .setCustomDetails(Json.writeValueToString(operation.getAttribute())) .build(); TriggerIncident...