Uses of Class
org.globus.myproxy.MyProxyException

Packages that use MyProxyException
org.globus.myproxy This library provides the MyProxy client API in Java. 
 

Uses of MyProxyException in org.globus.myproxy
 

Methods in org.globus.myproxy that throw MyProxyException
 void MyProxy.put(GSSCredential credential, String username, String passphrase, int lifetime)
          Stores credentials on MyProxy server.
 void MyProxy.put(GSSCredential credential, InitParams params)
          Stores credentials on MyProxy server.
 void MyProxy.destroy(GSSCredential credential, String username, String passphrase)
          Removes delegated credentials from MyProxy server.
 void MyProxy.destroy(GSSCredential credential, DestroyParams params)
          Removes delegated credentials from MyProxy server.
 void MyProxy.changePassword(GSSCredential credential, ChangePasswordParams params)
          Changes the password of the credential on the MyProxy server.
 CredentialInfo MyProxy.info(GSSCredential credential, String username, String passphrase)
          Retrieves credential information from MyProxy server.
 CredentialInfo[] MyProxy.info(GSSCredential credential, InfoParams params)
          Retrieves credential information from MyProxy server.
 GSSCredential MyProxy.get(String username, String passphrase, int lifetime)
          Retrieves delegated credentials from MyProxy server Anonymously (without local credentials) Notes: Performs simple verification of private/public keys of the delegated credential.
 GSSCredential MyProxy.get(GSSCredential credential, String username, String passphrase, int lifetime)
          Retrieves delegated credentials from MyProxy server.
 GSSCredential MyProxy.get(GSSCredential credential, GetParams params)
          Retrieves delegated credentials from MyProxy server.
static void MyProxy.put(String host, int port, GSSCredential credential, String username, String passphrase, int lifetime)
          Stores credentials on MyProxy server.
static void MyProxy.put(String host, int port, GSSCredential credential, String username, String passphrase, int lifetime, String subjectDN)
          Stores credentials on MyProxy server.
static void MyProxy.destroy(String host, int port, GSSCredential credential, String username, String passphrase)
          Removes delegated credentials from MyProxy server.
static void MyProxy.destroy(String host, int port, GSSCredential credential, String username, String passphrase, String subjectDN)
          Removes delegated credentials from MyProxy server.
static GSSCredential MyProxy.get(String host, int port, GSSCredential credential, String username, String passphrase, int lifetime)
          Retrieves delegated credentials from MyProxy server.
static GSSCredential MyProxy.get(String host, int port, GSSCredential credential, String username, String passphrase, int lifetime, String subjectDN)
          Retrieves delegated credentials from MyProxy server.