Package com.adobe.idp.um.api.infomodel.impl

Examples of com.adobe.idp.um.api.infomodel.impl.RoleImpl


                domainName = lcUser.getDomainName();
                userRights = new String[lcUser.getRoleMembership().size()];
                int counter = 0;
                for (Object o : lcUser.getRoleMembership()) {

                    RoleImpl role = (RoleImpl)o;
                    if(role.getId().equals("BASIC_ROLE_APPLICATION_ADMINISTRATOR")){
                        this.admin = true;
                    }
                    userRights[counter] = role.getId();
                    counter++;
                }

            } catch (UMException e) {
                e.printStackTrace()//To change body of catch statement use File | Settings | File Templates.
View Full Code Here

TOP

Related Classes of com.adobe.idp.um.api.infomodel.impl.RoleImpl

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.