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

org.finos.cdm.example.DemoCdmRuntimeModule Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.83
Show newest version
package org.finos.cdm.example;

import cdm.product.asset.functions.ResolveRateIndex;
import org.finos.cdm.example.functions.impls.NoOpResolveRateIndexImpl;
import org.finos.cdm.CdmRuntimeModule;

public class DemoCdmRuntimeModule extends CdmRuntimeModule {

	@Override
	protected void configure() {
		super.configure();
		bind(ResolveRateIndex.class).to(bindResolveRateIndex());
	}

	protected Class bindResolveRateIndex() {
		return NoOpResolveRateIndexImpl.class;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy