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

org.jfrog.build.api.MatrixParameter Maven / Gradle / Ivy

There is a newer version: 2.41.23
Show newest version
package org.jfrog.build.api;

import java.io.Serializable;

/**
 * @author Lior Hasson
 */

public class MatrixParameter implements Serializable {

    private String key;
    private String value;

    /**
     * Default constructor
     */
    public MatrixParameter() {
    }

    /**
     * Main constructor
     *
     * @param key   Agent name
     * @param value Agent version
     */
    public MatrixParameter(String key, String value) {
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy