aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/zone/AuthMethod.java
blob: 23951aeea376b93c87cecb0e13e141d436bd4e27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision.zone;

/**
 * An endpoint's authentication method.
 *
 * @author mpolden
 */
public enum AuthMethod {

    /** Clients can authenticate with a certificate (mutual TLS) */
    mtls,

    /** Clients can authenticate with a secret token */
    token,

    /** Clients cannot authenticate with the endpoint directly */
    none;

}