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

com.testquack.launcher.Executables Maven / Gradle / Ivy

package com.testquack.launcher;

import java.util.LinkedList;
import java.util.List;

public class Executables {

    private String launchId;

    private String projectId;

    private List executables = new LinkedList<>();

    public Executables() { }

    public Executables(String launchId, String projectId, List executables) {
        this.launchId = launchId;
        this.projectId = projectId;
        this.executables = executables;
    }

    public List getExecutables() {
        return executables;
    }

    public void setExecutables(List executables) {
        this.executables = executables;
    }

    public String getLaunchId() {
        return launchId;
    }

    public void setLaunchId(String launchId) {
        this.launchId = launchId;
    }

    public String getProjectId() {
        return projectId;
    }

    public void setProjectId(String projectId) {
        this.projectId = projectId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy