Yes
The TaminoClient pageSize property is the “10” in your example
So if you instance a TaminoClient object with a pageSize of 10 or set the pageSize property subsequently
TaminoClient instances have a query method which take an optional offset parameter - the “11” in your case.
TaminoResult query(java.lang.String query, int offset)
so to adapt the documentation example
import com.softwareag.tamino.API.dom.*;
…
try {
TaminoClient tamino = new TaminoClient(“http://localhost/tamino/mydb”);
tamino.setPageSize(10);
…
TaminoResult tr = tamino.query( " entry[@name=“Jackson” ",11);
}
catch ( Exception rx ) {
…
#API-Management#webMethods-Tamino-XML-Server-APIs#webMethods