Interface FeatureRequest

All Known Implementing Classes:
ImmutableFeatureRequest

public interface FeatureRequest
Request for creating or updating a frontend feature.
  • Method Summary

    Modifier and Type
    Method
    Description
    The optional description of the feature.
    default Boolean
    Whether the feature is currently enabled.
    The name of the feature.
    The list of users for which this feature should apply.
  • Method Details

    • name

      String name()
      The name of the feature.
    • description

      Optional<String> description()
      The optional description of the feature.
    • enabled

      @Default default Boolean enabled()
      Whether the feature is currently enabled.
    • users

      List<String> users()
      The list of users for which this feature should apply. Providing an empty list means the feature will apply to all users.