Package org.geogrid.aist.tsukubagama.servlet.credential

Examples of org.geogrid.aist.tsukubagama.servlet.credential.CredentialInfo


            dn = cred.getName().toString();
        } catch (GSSException e) {
            log.error(e.getMessage(), e);
        }

        CredentialInfo info = new CredentialInfo(username, dn);
        int lifetime = 0;
        try {
            lifetime = cred.getRemainingLifetime();
        } catch (GSSException e) {
            log.error(e.getMessage(), e);
        }
        info.setLifetime(lifetime);
        List attribute = getAttributes(cred);
        info.setAttribute(attribute);

        return info;
    }
View Full Code Here

TOP

Related Classes of org.geogrid.aist.tsukubagama.servlet.credential.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.