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

io.quarkiverse.roq.frontmatter.deployment.Paginate Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.quarkiverse.roq.frontmatter.deployment;

public record Paginate(int size, String link, String collection) {
    public Paginate {
        if (size < 1) {
            throw new IllegalArgumentException("Paginate size cannot be lower than 1");
        }
        if (link == null) {
            throw new IllegalArgumentException("Paginate link cannot be null");
        }
        if (collection == null) {
            throw new IllegalArgumentException("Paginate collection cannot be null");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy