use of io.crnk.client.module.HttpAdapterAware in project crnk-framework by crnk-project.
the class CrnkClient method setHttpAdapter.
public void setHttpAdapter(HttpAdapter httpAdapter) {
this.httpAdapter = httpAdapter;
List<Module> modules = moduleRegistry.getModules();
for (Module module : modules) {
if (module instanceof HttpAdapterAware) {
((HttpAdapterAware) module).setHttpAdapter(getHttpAdapter());
}
}
}
Aggregations