summaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/duper/ProxyApplication.java
blob: 7bc4facbfa8c0145d7393d1f30a4b5ceeb7f19d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.duper;

import com.yahoo.config.provision.ApplicationId;

/**
 * The proxy application is an ordinary non-infrastructure application.  Still, it may be useful
 * to refer to e.g. the ApplicationId of the proxy application, hence this class.
 *
 * @author hakonhall
 */
public class ProxyApplication {
    private static final ApplicationId APPLICATION_ID = new ApplicationId.Builder()
            .tenant(InfraApplication.TENANT_NAME)
            .applicationName("routing")
            .build();

    public ApplicationId getApplicationId() {
        return APPLICATION_ID;
    }
}