Package dan.security.acl

Examples of dan.security.acl.NamedPrincipal


    }
    public NamedPrincipal readPrincipal(Element elem) throws IOException {
        String name = elem.getAttributeValue("name");
        if (name == null)
            throw new IOException("Invalid principal found: missing 'name' attribute");
        return new NamedPrincipal(name);
    }
View Full Code Here

TOP

Related Classes of dan.security.acl.NamedPrincipal

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.