Class ExportProject

java.lang.Object
com.gooddata.sdk.model.md.maintenance.ExportProject

public class ExportProject
extends java.lang.Object
Complete project export configuration structure. Serialization only.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String URI  
  • Constructor Summary

    Constructors 
    Constructor Description
    ExportProject()
    Creates new ExportProject with default settings.
    ExportProject​(boolean exportUsers, boolean exportData, boolean excludeSchedules, boolean crossDataCenterExport, java.lang.String authorizedUsers)
    Creates new ExportProject.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getAuthorizedUsers()  
    boolean isCrossDataCenterExport()  
    boolean isExcludeSchedules()  
    boolean isExportData()  
    boolean isExportUsers()  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • ExportProject

      public ExportProject()
      Creates new ExportProject with default settings. Sets exportUsers=true exportData=true, excludeSchedules=false, crossDataCenterExport=false and empty authorizedUsers.
    • ExportProject

      public ExportProject​(boolean exportUsers, boolean exportData, boolean excludeSchedules, boolean crossDataCenterExport, java.lang.String authorizedUsers)
      Creates new ExportProject.
      Parameters:
      exportUsers - whether to add necessary data to be able to clone attribute properties
      exportData - whether to add necessary data to be able to clone attribute properties
      excludeSchedules - whether to add necessary data to be able to clone attribute properties
      crossDataCenterExport - whether export should be usable in any Data Center
      authorizedUsers - comma-separated list of email addresses of users authorized to import the project, surround email addresses with double quotes
  • Method Details