All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.data.jpa.datatables.mapping.Search Maven / Gradle / Ivy

Go to download

Spring Data JPA extension to work with the great jQuery plug-in DataTables (http://datatables.net/)

There is a newer version: 6.0.4
Show newest version
package org.springframework.data.jpa.datatables.mapping;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import jakarta.validation.constraints.NotNull;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class Search {

  /**
   * Global search value. To be applied to all columns which have searchable as true.
   */
  @NotNull
  private String value;

  /**
   * true if the global filter should be treated as a regular expression for advanced searching,
   * false otherwise. Note that normally server-side processing scripts will not perform regular
   * expression searching for performance reasons on large data sets, but it is technically possible
   * and at the discretion of your script.
   */
  @NotNull
  private Boolean regex;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy