aboutsummaryrefslogtreecommitdiffstats
path: root/config_test/src/main/java/com/yahoo/configtest/Demo.java
blob: 792fffa36a904a2ba6aa744e6bfb8b57cbde26f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.configtest;

/**
 * Just check we manage to compile something that requires configuration and
 * has no dependencies to Vespa.
 */
public class Demo {
    public final String greeting;

    public Demo(GreetingConfig config) {
        greeting = config.greeting();
    }
}