| Revision: 1960
          http://cogkit.svn.sourceforge.net/cogkit/?rev=1960&view=rev
Author:   hategan
Date:     2008-04-07 01:02:39 -0700 (Mon, 07 Apr 2008)
Log Message:
-----------
removed exception from SecurityContext.getCredential()
Modified Paths:
--------------
    trunk/current/src/cog/modules/provider-ssh/src/org/globus/cog/abstraction/impl/ssh/SSHSecurityContextImpl.java
Modified: trunk/current/src/cog/modules/provider-ssh/src/org/globus/cog/abstraction/impl/ssh/SSHSecurityContextImpl.java
===================================================================
--- trunk/current/src/cog/modules/provider-ssh/src/org/globus/cog/abstraction/impl/ssh/SSHSecurityContextImpl.java	2008-04-07 08:01:52 UTC (rev 1959)
+++ trunk/current/src/cog/modules/provider-ssh/src/org/globus/cog/abstraction/impl/ssh/SSHSecurityContextImpl.java	2008-04-07 08:02:39 UTC (rev 1960)
@@ -9,7 +9,6 @@
 import java.util.Hashtable;
 
 import org.apache.log4j.Logger;
-import org.globus.cog.abstraction.impl.common.task.InvalidSecurityContextException;
 import org.globus.cog.abstraction.interfaces.SecurityContext;
 
 public class SSHSecurityContextImpl implements SecurityContext {
@@ -36,7 +35,7 @@
         this.credentials = credentials;
     }
 
-    public Object getCredentials() throws InvalidSecurityContextException {
+    public Object getCredentials() {
         return this.credentials;
     }
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |