com.capitalone.dashboard.model.ServerSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artifactory-artifact-collector Show documentation
Show all versions of artifactory-artifact-collector Show documentation
Artifact Collector microservice currently collects data from JFrog Artifactory
The newest version!
package com.capitalone.dashboard.model;
import java.util.List;
public class ServerSetting {
String url;
String username;
String apiKey;
List repoAndPatterns;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public List getRepoAndPatterns() {
return repoAndPatterns;
}
public void setRepoAndPatterns(List repoAndPatterns) {
this.repoAndPatterns = repoAndPatterns;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy