Eliminate ClassLoadingStrategy
[mdsal.git] / binding / mdsal-binding-runtime-api / src / main / java / org / opendaylight / mdsal / binding / runtime / api / ModuleInfoSnapshot.java
index ffdbe7f8f4e2df8a7fb1df6246e76678fbaff94e..733511d47727a636ec297adc318370d5d245ec63 100644 (file)
@@ -14,7 +14,8 @@ import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
 import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceProvider;
 
 @Beta
-public interface ModuleInfoSnapshot extends Immutable, ClassLoadingStrategy, EffectiveModelContextProvider,
+public interface ModuleInfoSnapshot extends Immutable, EffectiveModelContextProvider,
         SchemaSourceProvider<YangTextSchemaSource> {
 
+    <T> Class<T> loadClass(String fullyQualifiedName) throws ClassNotFoundException;
 }