Package org.globus.myproxy

Examples of org.globus.myproxy.StoreParams


        X509Certificate[] certs = userCert.getCertificateChain();
        OpenSSLKey key =
            new BouncyCastleOpenSSLKey(userCert.getPrivateKey());
        key.encrypt(password);

        StoreParams param = new StoreParams();
        param.setUserName(username);
        param.setLifetime(maxDelegationLifetime);
        setAttributesTo(param, attributes);

        getMyProxyRep().store(this.credential, certs, key, param);
    }
View Full Code Here

TOP

Related Classes of org.globus.myproxy.StoreParams

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.