Package org.globus.myproxy

Examples of org.globus.myproxy.CredentialInfo


        param.setPassphrase(DUMMY_PASSWD);
        getMyProxyRep().destroy(this.credential, param);
    }

    public boolean existsUser(String username) {
        CredentialInfo info = null;
        try {
            info = getMyProxyRep().info(this.credential, username, DUMMY_PASSWD);
        } catch (MyProxyException e) {
            log.error(e.getMessage());
        }
        if (info == null) {
            return false;
        }
        if (log.isDebugEnabled()) {
            log.debug("Got User Info : " + info.toString());
        }
        return true;
    }
View Full Code Here

TOP

Related Classes of org.globus.myproxy.CredentialInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.