Package org.jboss.as.console.client.administration.role.model

Examples of org.jboss.as.console.client.administration.role.model.PrincipalType


            Principal principal = beanFactory.principal().as();
            principal.setName(name);
            if (node.hasDefined("realm")) {
                principal.setRealm(node.get("realm").asString());
            }
            PrincipalType type = PrincipalType.valueOf(node.get("type").asString());
            principal.setType(type);
            principals.add(principal);
            return principal;
        }
View Full Code Here

TOP

Related Classes of org.jboss.as.console.client.administration.role.model.PrincipalType

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.