org.springframework.data.jpa.datatables.mapping.Search Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-jpa-datatables Show documentation
Show all versions of spring-data-jpa-datatables Show documentation
Spring Data JPA extension to work with the great jQuery plug-in DataTables (http://datatables.net/)
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