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

com.trivago.cluecumber.rendering.pages.pojos.pagecollections.StartPageCollection Maven / Gradle / Ivy

There is a newer version: 2.9.4
Show newest version
package com.trivago.cluecumber.rendering.pages.pojos.pagecollections;

import com.trivago.cluecumber.constants.PluginSettings;

public class StartPageCollection {
    private PluginSettings.StartPage startPage;
    private boolean redirectToFirstScenario;

    public StartPageCollection(PluginSettings.StartPage startPage, boolean redirectToFirstScenario) {
        this.startPage = startPage;
        this.redirectToFirstScenario = redirectToFirstScenario;
    }

    public PluginSettings.StartPage getStartPage() {
        return startPage;
    }

    public boolean isRedirectToFirstScenario() {
        return redirectToFirstScenario;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy