Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/26#discussion_r68488614 --- Diff: core/workflow-java/src/main/java/org/apache/syncope/core/workflow/java/AbstractUserWorkflowAdapter.java --- @@ -78,6 +78,10 @@ public String getPrefix() { return doUpdate(userDAO.authFind(userPatch.getKey()), userPatch); } + @Override + public abstract WorkflowResult<String> doRequestCertify(final User user); --- End diff -- What's the purpose of this abstract method? It is declared in the interface and implemented in the concrete subclasses, it could be safely removed.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---