summaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/application/api/RuleConfigDeriver.java
blob: 770d8c450ee80eb69bcad35e2a52bb791d360d48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.application.api;

/**
 * Interface to hide dependency on prelude from application package module due to semantic rules
 * rewriting.
 *
 * @author lulf
 * @since 5.22
 */
// TODO: This is not used any more. Do a phased removal while keeping config model compatibility
public interface RuleConfigDeriver {
    void derive(String ruleBaseDir, String outputDir) throws Exception;
}