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

website.automate.waml.io.model.Scenario Maven / Gradle / Ivy

package website.automate.waml.io.model;

import java.util.List;
import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonProperty;

import website.automate.waml.io.model.action.Action;

public class Scenario {

    private String name;
    
    private int precedence = -1;
    
    private String description;
    
    private boolean fragment = false;
    
    private CriterionValue timeout = CriterionValue.of(5);

    @JsonProperty("if")
    private CriterionValue when;
    
    private CriterionValue unless;
    
    private List steps;
    
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getPrecedence() {
        return precedence;
    }

    public void setPrecedence(int precedence) {
        this.precedence = precedence;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public boolean isFragment() {
        return fragment;
    }

    public void setFragment(boolean fragment) {
        this.fragment = fragment;
    }

    public CriterionValue getTimeout() {
        return timeout;
    }

    public void setTimeout(CriterionValue timeout) {
        this.timeout = timeout;
    }

    public CriterionValue getWhen() {
        return when;
    }

    public void setWhen(CriterionValue when) {
        this.when = when;
    }

    public CriterionValue getUnless() {
        return unless;
    }

    public void setUnless(CriterionValue unless) {
        this.unless = unless;
    }

    public List getSteps() {
        return steps;
    }

    public void setSteps(List steps) {
        this.steps = steps;
    }

    @Override
    public int hashCode() {
        return Objects.hash(name);
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Scenario other = (Scenario) obj;
        if (name == null) {
            if (other.name != null)
                return false;
        } else if (!name.equals(other.name))
            return false;
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy