aboutsummaryrefslogtreecommitdiffstats
path: root/config_test/src/main/java/com/yahoo/configtest/Demo.java
blob: d6295c6a13582b47d8bad4afc432e84e02f0e300 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2017 Yahoo Holdings. 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();
    }
}