Class PartialMdExport

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

public class PartialMdExport
extends java.lang.Object
Partial metadata export configuration structure. Serialization only.
  • Field Summary

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

    Constructors 
    Constructor Description
    PartialMdExport​(boolean exportAttributeProperties, boolean crossDataCenterExport, java.lang.String... mdObjectsUris)
    Creates new PartialMdExport.
    PartialMdExport​(boolean exportAttributeProperties, boolean crossDataCenterExport, java.util.Collection<java.lang.String> mdObjectsUris)
    Creates new PartialMdExport.
    PartialMdExport​(java.lang.String... mdObjectsUris)
    Creates new PartialMdExport.
    PartialMdExport​(java.util.Collection<java.lang.String> mdObjectsUris)
    Creates new PartialMdExport.
  • Method Summary

    Modifier and Type Method Description
    java.util.Collection<java.lang.String> getUris()  
    boolean isCrossDataCenterExport()  
    boolean isExportAttributeProperties()  
    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

    • PartialMdExport

      public PartialMdExport​(java.lang.String... mdObjectsUris)
      Creates new PartialMdExport. At least one uri should be given. Sets crossDataCenterExport and exportAttributeProperties to false.
      Parameters:
      mdObjectsUris - list of uris to metadata objects which should be exported
    • PartialMdExport

      public PartialMdExport​(java.util.Collection<java.lang.String> mdObjectsUris)
      Creates new PartialMdExport. At least one uri should be given. Sets crossDataCenterExport and exportAttributeProperties to false.
      Parameters:
      mdObjectsUris - list of uris to metadata objects which should be exported
    • PartialMdExport

      public PartialMdExport​(boolean exportAttributeProperties, boolean crossDataCenterExport, java.lang.String... mdObjectsUris)
      Creates new PartialMdExport. At least one uri should be given.
      Parameters:
      exportAttributeProperties - whether to add necessary data to be able to clone attribute properties
      crossDataCenterExport - whether export should be usable in any Data Center
      mdObjectsUris - list of uris to metadata objects which should be exported
    • PartialMdExport

      public PartialMdExport​(boolean exportAttributeProperties, boolean crossDataCenterExport, java.util.Collection<java.lang.String> mdObjectsUris)
      Creates new PartialMdExport. At least one uri should be given.
      Parameters:
      exportAttributeProperties - whether to add necessary data to be able to clone attribute properties
      crossDataCenterExport - whether export should be usable in any Data Center
      mdObjectsUris - list of uris to metadata objects which should be exported
  • Method Details