Package org.apache.airavata.gfac.bes.security

Examples of org.apache.airavata.gfac.bes.security.GSISecurityContext


            GFacException {

        if (secProperties != null)
            return;

        GSISecurityContext gssContext = (GSISecurityContext) jobExecutionContext
                .getSecurityContext(GSISecurityContext.GSI_SECURITY_CONTEXT);

        try {
            String certLocation = gssContext.getTrustedCertificatePath();
            List<String> trustedCert = new ArrayList<String>();
            trustedCert.add(certLocation + "/*.0");
            trustedCert.add(certLocation + "/*.pem");

            DirectoryCertChainValidator dcValidator = new DirectoryCertChainValidator(trustedCert, Encoding.PEM, -1,
View Full Code Here

TOP

Related Classes of org.apache.airavata.gfac.bes.security.GSISecurityContext

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.