![JAR search and dependency download from the Maven repository](/logo.png)
net.nemerosa.ontrack.model.support.Page Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
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