package eu.dnetlib.enabling.resultset;

/**
 * ResultSet service constant values.
 * @author mhorst
 *
 */
public class ResultSetConstants {

//  ResultSet service constants -------------------------------------------
    public static final String RESULT_SET_STATUS_OPEN = "open";
    public static final String RESULT_SET_STATUS_CLOSED = "closed";

    public static final String RESULT_SET_REQUEST_MODE_WAITING = "waiting";
    public static final String RESULT_SET_REQUEST_MODE_NON_WAITING = "non-waiting";

    public static final int RESULT_SET_FIRST_ELEMENT = 1;

    public static final int RESULT_SET_END_POSITION_UNSPECIFIED = Integer.MAX_VALUE;

	
}
