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

com.rabbitmq.client.impl.CredentialsProvider Maven / Gradle / Ivy

Go to download

The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.

There is a newer version: 5.22.0
Show newest version
package com.rabbitmq.client.impl;

/**
 * Provider interface for establishing credentials for connecting to the broker. Especially useful
 * for situations where credentials might change before a recovery takes place or where it is 
 * convenient to plug in an outside custom implementation.
 *
 * @since 4.5.0
 */
public interface CredentialsProvider {

    String getUsername();

    String getPassword();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy