summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/generic/service/Module.java
blob: 82190e3344e5a46e086ebdc6143f3c2ee2cb9506 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.generic.service;

import com.yahoo.config.model.producer.AbstractConfigProducer;

/**
 * A simple sub service that is essentially just to have a node with a nice name
 * in the tree. Could might as well have used an AbstractConfigProducer as well,
 * but that makes the code very confusing to read.
 *
 * @author lulf
 */
public class Module extends AbstractConfigProducer {

    public Module(AbstractConfigProducer parent, String subId) {
        super(parent, subId);
    }
}