summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/process/auth
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2014-06-02 16:52:49 +0200
committerAndrew Branson <andrew.branson@cern.ch>2014-06-02 16:52:49 +0200
commit28f6763508612fadcc34d87cff383e6a5aef2ad6 (patch)
tree2e3e7b6978fc127c19b0189eeca515284521d1e6 /src/main/java/com/c2kernel/process/auth
parentb96dd998d6c442be19c342399839896d00d4b6f5 (diff)
more
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;