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

net.nemerosa.ontrack.model.support.Page Maven / Gradle / Ivy

package net.nemerosa.ontrack.model.support;

import lombok.Data;

@Data
public class Page {

    private int offset = 0;
    private int count = 100;

    public Page() {
        this(0, 100);
    }

    public Page(int offset, int count) {
        this.offset = offset;
        this.count = count;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy