Interface SpacesContextSelector<T>


public interface SpacesContextSelector<T>
Interface for selecting the context of the spaces using optional project id. The selection is finished by using path(String) method and the selector object cannot be used anymore after that.
Since:
3.9.0
  • Method Summary

    Modifier and Type
    Method
    Description
    path(String parentPath)
    Finishes selecting the spaces context using optional space parent path, but the parent path is not supported yet.
    project(String projectId)
    Optionally specify a project, must be used before path(String)
  • Method Details

    • project

      @NotNull SpacesContextSelector<T> project(@Nullable String projectId)
      Optionally specify a project, must be used before path(String)
      Throws:
      IllegalStateException - after the selection was finished
    • path

      @NotNull T path(@Nullable String parentPath)
      Finishes selecting the spaces context using optional space parent path, but the parent path is not supported yet.
      Parameters:
      parentPath - - parent path - not supported yet, use null or empty string which will mean root once it is fully supported