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

org.jfrog.hudson.UserPluginInfoParam Maven / Gradle / Ivy

The newest version!
package org.jfrog.hudson;

/**
 * @author Noam Y. Tenne
 */
public class UserPluginInfoParam {

    private Object key;
    private Object defaultValue;

    public UserPluginInfoParam(Object key, Object defaultValue) {
        this.key = key;
        this.defaultValue = defaultValue;
    }

    public Object getKey() {
        return key;
    }

    public Object getDefaultValue() {
        return defaultValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy