You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by mm...@apache.org on 2020/02/27 08:17:37 UTC

[syncope] 08/12: complete binders, rest client and DAOs for authn client apps

This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch SYNCOPE-163-1
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 4a503ce0e1d5efe2595e3899a0f9f5669375fbf4
Author: Misagh Moayyed <mm...@gmail.com>
AuthorDate: Tue Feb 25 16:53:02 2020 +0330

    complete binders, rest client and DAOs for authn client apps
---
 .../common/lib/authentication/AuthenticationModuleConf.java        | 7 +++++--
 .../common/lib/authentication/JaasAuthenticationModuleConf.java    | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/AuthenticationModuleConf.java b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/AuthenticationModuleConf.java
index 69afddc..6211915 100644
--- a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/AuthenticationModuleConf.java
+++ b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/AuthenticationModuleConf.java
@@ -32,7 +32,10 @@ public interface AuthenticationModuleConf extends Serializable {
      */
     String getName();
 
+    /**
+     * Execution order of this authentication module in the policy chain.
+     *
+     * @return numeric order
+     */
     int getOrder();
-
-    
 }
diff --git a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/JaasAuthenticationModuleConf.java b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/JaasAuthenticationModuleConf.java
index 24b785e..6ccafd4 100644
--- a/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/JaasAuthenticationModuleConf.java
+++ b/common/idrepo/lib/src/main/java/org/apache/syncope/common/lib/authentication/JaasAuthenticationModuleConf.java
@@ -22,7 +22,7 @@ package org.apache.syncope.common.lib.authentication;
 import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlType;
 
-@XmlRootElement(name = "predefinedAuthenticationModuleConf")
+@XmlRootElement(name = "jaasAuthenticationModuleConf")
 @XmlType
 public class JaasAuthenticationModuleConf extends AbstractAuthenticationModuleConf {
     private static final long serialVersionUID = -7775771400318503131L;