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

dev.galasa.framework.spi.ras.RasRunResultPage Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi.ras;

import java.util.List;

import dev.galasa.framework.spi.IRunResult;

/**
 * An internal bean class representing a page of runs stored in the RAS,
 * which includes a token pointing to the next page of runs for 
 * cursor-based pagination
 */
public class RasRunResultPage {
    
    private List runs;
    private String nextCursor;

    public RasRunResultPage(List runs, String nextCursor) {
        this.runs = runs;
        this.nextCursor = nextCursor;
    }

    public List getRuns() {
        return runs;
    }

    public void setRuns(List runs) {
        this.runs = runs;
    }

    public String getNextCursor() {
        return nextCursor;
    }

    public void setNextCursor(String nextCursor) {
        this.nextCursor = nextCursor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy