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

gov.nasa.pds.harvest.cfg.RabbitMQCfg Maven / Gradle / Ivy

package gov.nasa.pds.harvest.cfg;

import java.util.ArrayList;
import java.util.List;

/**
 * RabbitMQ configuration
 * @author karpenko
 */
public class RabbitMQCfg
{
    /**
     * List of RabbitMQ addresses (host and port tuples)
     */
    public List addresses = new ArrayList<>();
    
    /**
     * RabbitMQ user
     */
    public String userName;
    
    /**
     * RabbitMQ password
     */
    public String password;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy