com.thoughtworks.webstub.config.ConfigurationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-stub Show documentation
Show all versions of web-stub Show documentation
Library for stubbing external HTTP dependencies
The newest version!
package com.thoughtworks.webstub.config;
public abstract class ConfigurationProvider {
private ConfigurationListener listener;
protected ConfigurationProvider(ConfigurationListener listener) {
this.listener = listener;
}
public void configurationCreated(HttpConfiguration configuration) {
listener.configurationCreated(configuration);
}
protected void configurationCleared() {
listener.configurationCleared();
}
}