use of org.commonjava.indy.client.core.module.IndyRawHttpModule in project indy by Commonjava.
the class DownloadContentHasLengthHeaderHostedTest method getAdditionalClientModules.
@Override
protected Collection<IndyClientModule> getAdditionalClientModules() {
List<IndyClientModule> mods = new ArrayList<>();
Collection<IndyClientModule> fromParent = super.getAdditionalClientModules();
if (fromParent != null) {
mods.addAll(fromParent);
}
mods.add(new IndyRawHttpModule());
return mods;
}
use of org.commonjava.indy.client.core.module.IndyRawHttpModule in project indy by Commonjava.
the class DownloadContentHasLengthHeaderTest method getAdditionalClientModules.
@Override
protected Collection<IndyClientModule> getAdditionalClientModules() {
List<IndyClientModule> mods = new ArrayList<>();
Collection<IndyClientModule> fromParent = super.getAdditionalClientModules();
if (fromParent != null) {
mods.addAll(fromParent);
}
mods.add(new IndyRawHttpModule());
return mods;
}
Aggregations