Package org.apache.pluto.container.om.portlet

Examples of org.apache.pluto.container.om.portlet.SecurityRoleRef


        }
        if (src.securityRoleRef != null)
        {
            for (SecurityRoleRefType rrt : src.securityRoleRef)
            {
                SecurityRoleRef srr = target.addSecurityRoleRef(rrt.roleName);
                srr.setRoleLink(rrt.roleLink);
                if (rrt.description != null)
                {
                    for (DescriptionType d : rrt.description)
                    {
                        Description desc = srr.addDescription(d.lang);
                        desc.setDescription(d.value);
                    }
                }
            }
        }
View Full Code Here


        }
        if (src.securityRoleRef != null)
        {
            for (SecurityRoleRefType rrt : src.securityRoleRef)
            {
                SecurityRoleRef srr = target.addSecurityRoleRef(rrt.roleName);
                srr.setRoleLink(rrt.roleLink);
                if (rrt.description != null)
                {
                    for (DescriptionType d : rrt.description)
                    {
                        Description desc = srr.addDescription(d.lang);
                        desc.setDescription(d.value);
                    }
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.pluto.container.om.portlet.SecurityRoleRef

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.