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

com.sap.cds.adapter.odata.v2.query.NextLinkInfo Maven / Gradle / Ivy

There is a newer version: 3.6.0
Show newest version
/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.adapter.odata.v2.query;

public class NextLinkInfo {

	private final int nextSkipToken;
	private final int pageSize;

	public NextLinkInfo(int top, int skip) {
		this.nextSkipToken = top + skip;
		this.pageSize = top;
	}

	public int getNextSkipToken() {
		return nextSkipToken;
	}

	public int getPageSize() {
		return pageSize;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy