You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2017/07/14 12:17:31 UTC

[2/2] syncope git commit: [SYNCOPE-1144] Ensures ClassPathScanImplementationLookup is inited as first

[SYNCOPE-1144] Ensures ClassPathScanImplementationLookup is inited as first


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/daae6a79
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/daae6a79
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/daae6a79

Branch: refs/heads/master
Commit: daae6a7975731e03dc99a9795cee20c5fbedd9b8
Parents: 8d2d9ed
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Fri Jul 14 14:17:11 2017 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Fri Jul 14 14:17:21 2017 +0200

----------------------------------------------------------------------
 .../core/logic/init/ClassPathScanImplementationLookup.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/daae6a79/core/logic/src/main/java/org/apache/syncope/core/logic/init/ClassPathScanImplementationLookup.java
----------------------------------------------------------------------
diff --git a/core/logic/src/main/java/org/apache/syncope/core/logic/init/ClassPathScanImplementationLookup.java b/core/logic/src/main/java/org/apache/syncope/core/logic/init/ClassPathScanImplementationLookup.java
index 1b9bc72..8af1d44 100644
--- a/core/logic/src/main/java/org/apache/syncope/core/logic/init/ClassPathScanImplementationLookup.java
+++ b/core/logic/src/main/java/org/apache/syncope/core/logic/init/ClassPathScanImplementationLookup.java
@@ -79,10 +79,10 @@ public class ClassPathScanImplementationLookup implements ImplementationLookup {
     private Map<Class<? extends PasswordRuleConf>, Class<? extends PasswordRule>> passwordRuleClasses;
 
     private Set<Class<?>> auditAppenderClasses;
-    
+
     @Override
     public Integer getPriority() {
-        return 400;
+        return Integer.MIN_VALUE;
     }
 
     /**