org.bidib.wizard.common.model.settings.ConnectionConfigurationProvider Maven / Gradle / Ivy
package org.bidib.wizard.common.model.settings;
import java.util.List;
import org.springframework.core.Ordered;
public interface ConnectionConfigurationProvider extends Ordered {
/**
* @return the connection configurations
*/
List getConnectionConfigurations();
/**
* @return the provider key. Should be unique in the system to allow distinguish between providers.
*/
String getProviderKey();
}