
com.genexus.db.odata.CurrentOfManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxodata Show documentation
Show all versions of gxodata Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
The newest version!
package com.genexus.db.odata;
import java.util.HashMap;
public class CurrentOfManager
{
private final HashMap currentOfManager = new HashMap<>();
public void addQuery(String cursorId, ODataResultSet resultSet)
{
currentOfManager.put(cursorId, resultSet);
}
public void removeQuery(String cursorId)
{
currentOfManager.remove(cursorId);
}
public ODataResultSet getQuery(String cursorId)
{
return currentOfManager.get(cursorId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy