com.sap.cds.adapter.odata.v2.query.NextLinkInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-adapter-odata-v2 Show documentation
Show all versions of cds-adapter-odata-v2 Show documentation
OData V2 adapter for CDS Services Java
/**************************************************************************
* (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