Package org.exoplatform.portal.pom.data

Examples of org.exoplatform.portal.pom.data.ContainerData


   @Override
   public ContainerData build()
   {
      List<ComponentData> children = buildChildren();
      return new ContainerData(
         storageId,
         id,
         name,
         icon,
         template,
View Full Code Here


    }

    @Override
    public ContainerData build() {
        List<ComponentData> children = buildChildren();
        return new ContainerData(storageId, id, name, icon, template, factoryId, title, description, width, height,
                Utils.safeImmutableList(accessPermissions), children);
    }
View Full Code Here

    }

    @Override
    public ContainerData build() {
        List<ComponentData> children = buildChildren();
        return new ContainerData(storageId, id, name, icon, template, factoryId, title, description, width, height,
                Utils.safeImmutableList(accessPermissions), Utils.safeImmutableList(moveAppsPermissions),
                Utils.safeImmutableList(moveContainersPermissions), children);
    }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.pom.data.ContainerData

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.