summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/process/auth
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/c2kernel/process/auth')
-rw-r--r--src/main/java/com/c2kernel/process/auth/Authenticator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/c2kernel/process/auth/Authenticator.java b/src/main/java/com/c2kernel/process/auth/Authenticator.java
index 61986a6..40defc4 100644
--- a/src/main/java/com/c2kernel/process/auth/Authenticator.java
+++ b/src/main/java/com/c2kernel/process/auth/Authenticator.java
@@ -6,7 +6,7 @@ import com.c2kernel.common.ObjectNotFoundException;
public interface Authenticator {
- public boolean authenticate(String resource, String agentName, String password) throws InvalidDataException, ObjectNotFoundException;
+ public boolean authenticate(String agentName, String password, String resource) throws InvalidDataException, ObjectNotFoundException;
public boolean authenticate(String resource) throws InvalidDataException, ObjectNotFoundException;