Annotation Type Filter


  • @Repeatable(Filters.class)
    @Target(METHOD)
    @Retention(RUNTIME)
    public @interface Filter
    Filters results on the client side. Allows a query to be further refined once the data is requested and returned. When possible use @Prefix as this will perform the filtering on the server side and result in a smaller http payload.
    See Also:
    Prefix
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<? extends java.util.function.Predicate<S3File>> value  
    • Element Detail

      • value

        java.lang.Class<? extends java.util.function.Predicate<S3File>> value