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

com.imsweb.decisionengine.DataProvider Maven / Gradle / Ivy

There is a newer version: 11.3.0
Show newest version
/*
 * Copyright (C) 2014 Information Management Services, Inc.
 */
package com.imsweb.decisionengine;

/**
 * Abstract class which provides tables and starting points to algorithm
 */
public interface DataProvider {

    /**
     * Get a table by identifier
     * @param id the table id
     * @return a Table instance or null if identifier was not found
     */
    Table getTable(String id);

    /**
     * Get an definition by identifier
     * @param id the definition id
     * @return a Definition instance or null if identifier was not found
     */
    Definition getDefinition(String id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy