001package javax.visrec.util;
002
003/**
004 * This interface should be implemented if we want to allow access to underlying ML model
005 * @author Zoran
006 * @param <M> 
007 */
008public interface ModelProvider<M> {
009    
010    M getModel();
011   
012    // also provide public setModel to allow model injection?
013   
014}