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

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

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

/**
 * Represents a mapping of a key value to another key value.
 */
public interface KeyMapping {

    /**
     * The original key
     * @return a String key
     */
    String getFrom();

    /**
     * The new key
     * @return a String key
     */
    String getTo();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy