From 00df37ce89c6da4dbcf137ea84ff80a6b9030768 Mon Sep 17 00:00:00 2001 From: Dmytro Rud Date: Thu, 23 Jan 2025 15:26:03 +0100 Subject: [PATCH] make Syslog decoder classes public --- .../openehealth/ipf/commons/audit/server/Rfc5424Decoder.java | 2 +- .../openehealth/ipf/commons/audit/server/Rfc5425Decoder.java | 2 +- .../openehealth/ipf/commons/audit/server/Rfc5426Decoder.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5424Decoder.java b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5424Decoder.java index efeec32a41..50823aa19d 100644 --- a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5424Decoder.java +++ b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5424Decoder.java @@ -42,7 +42,7 @@ * @author Christian Ohr * @since 4.0 */ -class Rfc5424Decoder extends MessageToMessageDecoder { +public class Rfc5424Decoder extends MessageToMessageDecoder { private static final Logger log = LoggerFactory.getLogger(Rfc5424Decoder.class); diff --git a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5425Decoder.java b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5425Decoder.java index 1714c891eb..aa7317ad6d 100644 --- a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5425Decoder.java +++ b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5425Decoder.java @@ -38,7 +38,7 @@ * @author Christian Ohr * @since 4.0 */ -class Rfc5425Decoder extends ByteToMessageDecoder { +public class Rfc5425Decoder extends ByteToMessageDecoder { @SuppressWarnings("OptionalUsedAsFieldOrParameterType") private OptionalInt frameLength = empty(); diff --git a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5426Decoder.java b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5426Decoder.java index 61629d5d64..ee224a4ebd 100644 --- a/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5426Decoder.java +++ b/commons/audit/src/main/java/org/openehealth/ipf/commons/audit/server/Rfc5426Decoder.java @@ -22,7 +22,7 @@ import java.util.List; -class Rfc5426Decoder extends ByteToMessageDecoder { +public class Rfc5426Decoder extends ByteToMessageDecoder { @Override protected void decode(ChannelHandlerContext ctx, ByteBuf in, List out) {