
com.capitalone.dashboard.model.UDeployCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of udeploy-deployment-collector Show documentation
Show all versions of udeploy-deployment-collector Show documentation
Deploy Collector microservice currently collects data from IBM UCD
The newest version!
package com.capitalone.dashboard.model;
import java.util.ArrayList;
import java.util.List;
/**
* Collector implementation for UDeploy that stores UDeploy server URLs.
*/
public class UDeployCollector extends Collector {
private List udeployServers = new ArrayList<>();
public List getUdeployServers() {
return udeployServers;
}
public static UDeployCollector prototype(List servers) {
UDeployCollector protoType = new UDeployCollector();
protoType.setName("UDeploy");
protoType.setCollectorType(CollectorType.Deployment);
protoType.setOnline(true);
protoType.setEnabled(true);
protoType.getUdeployServers().addAll(servers);
return protoType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy