Hi,
Finally found how to do it. For those having same troubles: You need to place your Conf in: core/src/main/java/org/apache/syncope/common/lib/report/myReportletConf.java AND IN console/src/main/java/org/apache/syncope/common/lib/report/myReportletConf.java Then your reportlet in core/src/main/java/org/apache/syncope/core/provisioning/java/job/report/myReportlet.java Then finally you also need to have (it does not build if it is not here) core/src/main/java/org/apache/syncope/core/persistence/api/DomainHolder.java Whom the content can be taken on github Enjoy. De : [email protected] À : [email protected] Sujet : custom reportlet and reportletConf do not appear on console Date : 21/10/2020 19:37:36 Europe/Paris Hi, I developed my own reportlet class and reportletConf that I put in: core/src/main/java/org/apache/syncope/core/provisioning/java/job/report/myReportlet.java core/src/main/java/org/apache/syncope/common/lib/report/myReportletConf.java Maven build runs well and I see my classes like: ./core/target/syncope/WEB-INF/classes/org/apache/syncope/core/provisioning/java/job/report/myReportlet.class ./core/target/syncope/WEB-INF/classes/org/apache/syncope/common/lib/report/myReportletConf.class However, no way to see them on console when I go to Configuration -> implementation -> reportlets -> [add] Did I miss something ?? Thanks
