From 94fb2ca809fdf4de8e250077a6c497b04b5268c4 Mon Sep 17 00:00:00 2001 From: Andres Vallecilla Date: Thu, 3 Oct 2024 15:55:27 -0500 Subject: [PATCH] feat: add docs --- README.md | 3 ++- .../java/io/twentysixty/sa/client/jms/ProducerInterface.java | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3a6c35..93a7932 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ Client tools for building Quarkus java DIDcomm Verifiable Credential powered con ## How to use On dev mode use the command `mvn clean verify install -Dgpg.skip` to run the project - +## Before PR +Please run `mvn clean spotless:check` command before uploading changes to verify the syntax ## Releases diff --git a/src/main/java/io/twentysixty/sa/client/jms/ProducerInterface.java b/src/main/java/io/twentysixty/sa/client/jms/ProducerInterface.java index 2bfed71..6b1a0f5 100644 --- a/src/main/java/io/twentysixty/sa/client/jms/ProducerInterface.java +++ b/src/main/java/io/twentysixty/sa/client/jms/ProducerInterface.java @@ -11,6 +11,7 @@ public interface ProducerInterface { public void setThreads(Integer threads); public void setDebug(Boolean debug); + public void sendMessage(M message) throws Exception; }