From b7ae54aa7a2a7b3e3c74dcab677a08385583df95 Mon Sep 17 00:00:00 2001 From: freyssin Date: Sun, 13 Dec 2020 17:24:35 +0100 Subject: [PATCH] Adds a metod allowing to dump configuration properties. --- .../main/java/fr/dyade/aaa/util/DBTransactionMBean.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/joram/a3/rt/src/main/java/fr/dyade/aaa/util/DBTransactionMBean.java b/joram/a3/rt/src/main/java/fr/dyade/aaa/util/DBTransactionMBean.java index e447140d2..18bb81a4f 100644 --- a/joram/a3/rt/src/main/java/fr/dyade/aaa/util/DBTransactionMBean.java +++ b/joram/a3/rt/src/main/java/fr/dyade/aaa/util/DBTransactionMBean.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006 - 2019 ScalAgent Distributed Technologies + * Copyright (C) 2006 - 2020 ScalAgent Distributed Technologies * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -88,4 +88,11 @@ public interface DBTransactionMBean extends TransactionMBean { String getObject(String dirname, String name); String getObjectList(String prefix); + + /** + * Returns the configuration properties of the component. + * + * @return the configuration properties of the component. + */ + String dumpProperties(); } -- GitLab