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

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

/*
 * Copyright (C) 2014 Information Management Services, Inc.
 */
package com.imsweb.decisionengine;

/**
 * An output field in the definition
 */
public interface Output {

    /**
     * The key representing the field name
     * @return a String name
     */
    String getKey();

    /**
     * If supplied, the value of the field is verified to be contained in the table
     * @return a String representing the lookup table name
     */
    String getTable();

    /**
     * If supplied, a default value to give the field at the beginning of the staging process
     * @return a default value to be set for the output
     */
    String getDefault();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy