aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/zone/AuthMethod.java
blob: 88b8a05c4c69fa34080e1f4de9ae371ab8686833 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 {

    mtls,
    token,

}