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

com.capitalone.dashboard.model.UDeployCollector Maven / Gradle / Ivy

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