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

com.chutneytesting.design.domain.plugins.jira.Xray Maven / Gradle / Ivy

package com.chutneytesting.design.domain.plugins.jira;

import java.util.List;

public class Xray {
    private String testExecutionKey;
    private List tests;
    private XrayInfo info;

    public Xray(String testExecutionKey, List tests, XrayInfo info) {
        this.testExecutionKey = testExecutionKey;
        this.tests = tests;
        this.info = info;
    }

    public String getTestExecutionKey() {
        return testExecutionKey;
    }

    public void setTestExecutionKey(String testExecutionKey) {
        this.testExecutionKey = testExecutionKey;
    }

    public List getTests() {
        return tests;
    }

    public void setTests(List tests) {
        this.tests = tests;
    }

    public XrayInfo getInfo() {
        return info;
    }

    public void setInfo(XrayInfo info) {
        this.info = info;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy