summaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/monitor/application/ControllerApplication.java
blob: c1bc303e7920007a2c7832bee4e569b1214cf286 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.monitor.application;

import com.yahoo.config.provision.ClusterSpec;
import com.yahoo.config.provision.NodeType;

/**
 * @author mpolden
 */
public class ControllerApplication extends HostedVespaApplication {

    public static final ControllerApplication CONTROLLER_APPLICATION = new ControllerApplication();

    private ControllerApplication() {
        super("controller", NodeType.controller, ClusterSpec.Type.container, ClusterSpec.Id.from("controller"));
    }

}