Examples of GlobusPrincipal


Examples of org.globus.gsi.jaas.GlobusPrincipal

        final Iterator iter = principals.iterator();
        while (iter.hasNext()) {
            final Object obj = iter.next();
            // instanceof rejects nulls
            if (obj instanceof GlobusPrincipal) {
                final GlobusPrincipal gp = (GlobusPrincipal)obj;
                final String name = gp.getName();
                // ugh
                if (name != null && name.equals("<anonymous>")) {
                    principals.remove(gp);
                    break;
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.