Interface FeatureInstallResult

All Superinterfaces:
Serializable

public interface FeatureInstallResult extends Serializable
Definition representing the result of a feature installation process.
Since:
5.0.111
See Also:
  • Method Details

    • getLostAndFoundStoreNodes

      @NotNull @Deprecated @NotNull EnumMap<Store.Type,List<BasicElementInfo>> getLostAndFoundStoreNodes()
      Deprecated.
      since 5.2.181006 - use getLostAndFoundElements() instead
      Returns all store nodes which have been moved to folder lost and found during the installation process.
      Since:
      5.0.111
    • getDeletedStoreNodes

      @NotNull @Deprecated @NotNull EnumMap<Store.Type,List<BasicElementInfo>> getDeletedStoreNodes()
      Deprecated.
      since 5.2.181006 - use getDeletedElements() instead
      Returns all store nodes which have deleted during the installation process.
      Since:
      5.0.111
    • getCreatedElements

      @NotNull @NotNull Set<BasicElementInfo> getCreatedElements()
      Provides the set of newly created elements.
      Returns:
      Set of new elements.
      Since:
      5.2.181006
    • getUpdatedElements

      @NotNull @NotNull Set<BasicElementInfo> getUpdatedElements()
      Provides the set of updated elements.
      Returns:
      Set of updated elements.
      Since:
      5.2.181006
    • getDeletedElements

      @NotNull @NotNull Set<BasicElementInfo> getDeletedElements()
      Provides the set of deleted elements.
      Returns:
      Set of deleted elements.
      Since:
      5.2.181006
    • getLostAndFoundElements

      @NotNull @NotNull Set<BasicElementInfo> getLostAndFoundElements()
      Provides the set of elements being moved to the lost and found folder instead of being deleted.
      Returns:
      Set of moved elements.
      Since:
      5.2.181006
    • getMovedElements

      @NotNull @NotNull Set<BasicElementInfo> getMovedElements()
      Provides the set of moved elements.
      Returns:
      Set of moved elements.
      Since:
      5.2.181006