Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r2675 - trunk/perfsonar/src/org/perfsonar/service/commons/authn

Subject: perfsonar development work

List archive

perfsonar: r2675 - trunk/perfsonar/src/org/perfsonar/service/commons/authn


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r2675 - trunk/perfsonar/src/org/perfsonar/service/commons/authn
  • Date: Mon, 20 Aug 2007 04:47:40 -0400

Author: rodriguez
Date: 2007-08-20 04:47:40 -0400 (Mon, 20 Aug 2007)
New Revision: 2675

Modified:

trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchManager.java

trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchProtocol.java
Log:
Throwing a PerfSONAR exception if any error happens

Modified:
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchManager.java
===================================================================
---
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchManager.java
2007-08-19 19:15:45 UTC (rev 2674)
+++
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchManager.java
2007-08-20 08:47:40 UTC (rev 2675)
@@ -1,5 +1,7 @@
package org.perfsonar.service.commons.authn;

+import org.perfsonar.service.commons.exceptions.PerfSONARException;
+
public class AADispatchManager {
AADispatchProtocol protocol;

@@ -7,7 +9,7 @@
this.protocol=prot;
}

- public AuthNResponse getAuthentication(AuthNRequest req) {
+ public AuthNResponse getAuthentication(AuthNRequest req) throws
PerfSONARException {
return protocol.getAuthentication(req);
}
}

Modified:
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchProtocol.java
===================================================================
---
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchProtocol.java
2007-08-19 19:15:45 UTC (rev 2674)
+++
trunk/perfsonar/src/org/perfsonar/service/commons/authn/AADispatchProtocol.java
2007-08-20 08:47:40 UTC (rev 2675)
@@ -1,5 +1,7 @@
package org.perfsonar.service.commons.authn;

+import org.perfsonar.service.commons.exceptions.PerfSONARException;
+
public interface AADispatchProtocol {
- public AuthNResponse getAuthentication(AuthNRequest req);
+ public AuthNResponse getAuthentication(AuthNRequest req) throws
PerfSONARException;
}



  • perfsonar: r2675 - trunk/perfsonar/src/org/perfsonar/service/commons/authn, svnlog, 08/20/2007

Archive powered by MHonArc 2.6.16.

Top of Page