Examples of ExportManifestProperty


Examples of org.pentaho.platform.plugin.services.importexport.exportManifest.bindings.ExportManifestProperty

  protected ExportManifestEntity( String rootFolder, RepositoryFile repositoryFile,
                                  RepositoryFileAcl repositoryFileAcl )
    throws ExportManifestFormatException {
    this();
    ExportManifestProperty rawExportManifestProperty = new ExportManifestProperty();
    createEntityMetaData( rootFolder, repositoryFile );
    createEntityAcl( repositoryFileAcl );
    rawExportManifestProperty.setEntityMetaData( entityMetaData );
    rawExportManifestProperty.setEntityAcl( entityAcl );
  }
View Full Code Here

Examples of org.pentaho.platform.plugin.services.importexport.exportManifest.bindings.ExportManifestProperty

    rawExportManifestProperty.setEntityAcl( entityAcl );
  }

  protected ExportManifestEntity( File file, String userId, String projectId, Boolean isFolder, Boolean isHidden ) {
    this();
    ExportManifestProperty rawExportManifestProperty = new ExportManifestProperty();
    createEntityMetaData( file, userId, projectId, isFolder, isHidden );
    createEntityAcl( userId );
    rawExportManifestProperty.setEntityMetaData( entityMetaData );
    rawExportManifestProperty.setEntityAcl( entityAcl );
  }
View Full Code Here

Examples of org.pentaho.platform.plugin.services.importexport.exportManifest.bindings.ExportManifestProperty

  ExportManifestEntityDto getExportManifestEntityDto() {
    // Property list is not kept in sync. Create it now
    List<ExportManifestProperty> rawProperties = rawExportManifestEntity.getExportManifestProperty();
    rawProperties.clear();
    if ( entityMetaData != null ) {
      ExportManifestProperty exportManifestProperty = new ExportManifestProperty();
      exportManifestProperty.setEntityMetaData( entityMetaData );
      rawProperties.add( exportManifestProperty );
    }

    if ( entityAcl != null ) {
      ExportManifestProperty exportManifestProperty = new ExportManifestProperty();
      exportManifestProperty.setEntityAcl( entityAcl );
      rawProperties.add( exportManifestProperty );
    }

    if ( customProperties != null && customProperties.size() > 0 ) {
      ExportManifestProperty exportManifestProperty = new ExportManifestProperty();
      exportManifestProperty.getCustomProperty().addAll( customProperties );
      rawProperties.add( exportManifestProperty );
    }
    return rawExportManifestEntity;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.