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

fr.ouestfrance.querydsl.postgrest.model.BulkOptions Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package fr.ouestfrance.querydsl.postgrest.model;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;

/**
 * BulkOptions
 */
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Builder
public class BulkOptions {
    /**
     * Count only result
     */
    private boolean countOnly = false;
    /**
     * Allow to make multiple calls
     */
    private int pageSize = -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy