Package org.gatein.api.composition

Examples of org.gatein.api.composition.ContainerImpl


        ArrayList<ModelObject> srcChildren = src.getChildren();
        if (srcChildren != null) {
            children = getContainerItemsFor(srcChildren);
        }

        ContainerImpl container = new ContainerImpl(children);
        container.setTemplate(src.getTemplate());
        container.setMoveAppsPermission(Util.from(src.getMoveAppsPermissions()));
        container.setMoveContainersPermission(Util.from(src.getMoveContainersPermissions()));
        container.setAccessPermission(Util.from(src.getAccessPermissions()));
        return container;
    }
View Full Code Here

TOP

Related Classes of org.gatein.api.composition.ContainerImpl

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.