Package dan.security.acl

Examples of dan.security.acl.GroupDomain


    public JaasAcl readAcl(Element elem) throws IOException {
        JaasGroupAcl acl = (JaasGroupAcl)super.readAcl(elem);
       
        Element domainElem = elem.getChild("domain");
       
        GroupDomain domain;
        if (domainElem == null)
            domain = new AclGroupDomain();
        else
            domain = domainSerializer.readGroupDomain(domainElem);
       
View Full Code Here

TOP

Related Classes of dan.security.acl.GroupDomain

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.