Interface ExportRuleSetComp

  • All Known Subinterfaces:
    ExportRuleSet

    public interface ExportRuleSetComp
    This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
    • Method Detail

      • getExports

        @Deprecated
        Iterator<Export> getExports()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use ExportRuleSet.getExports() instead.
        Get an Iterator over an ordered collection of Exports. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. Export rule-set defining what to include in this export.
        Returns:
        An Iterator over an ordered collection of Export objects .
      • getExportRuleItems

        @Deprecated
        Iterator<ExportRuleItem> getExportRuleItems()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use ExportRuleSet.getExportRuleItems() instead.
        Get an Iterator over a collection of ExportRuleItems, the collection will be ordered by UniqueId. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. Export rule item, allows a fixed set of objects to be exported.
        Returns:
        An Iterator over a collection of ExportRuleItem objects , the collection will be ordered by UniqueId.
      • getExportRules

        @Deprecated
        Iterator<ExportRule> getExportRules()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use ExportRuleSet.getExportRules() instead.
        Get an Iterator over a collection of ExportRules, the collection will be ordered by UniqueId. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. Set of ExportRules that make up the ExportRuleSet.
        Returns:
        An Iterator over a collection of ExportRule objects , the collection will be ordered by UniqueId.
      • getExportedItems

        @Deprecated
        Iterator<com.redwood.scheduler.api.export.ExportedItem> getExportedItems()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use ExportRuleSet.getExportedItems() instead.
        This method returns a RWIterable with all the items that this ExportRuleSet would export.
        Returns:
        Returns an RWIterable <ExportedItem> with all items that should be exported with this exportRuleSet. The items come from the list of items and the rules of this exportRuleSet.