org.jfrog.hudson.UserPluginInfoParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artifactory Show documentation
Show all versions of artifactory Show documentation
Integrates Artifactory to Hudson
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;
}
}