public static enum Repository.RepositoryAuthenticationType extends Enum<Repository.RepositoryAuthenticationType>
| Enum Constant and Description |
|---|
NONE |
PASSWORD |
SHARED_CREDENTIALS |
SSH |
SSL_CLIENT_CERTIFICATE |
| Modifier and Type | Method and Description |
|---|---|
static Repository.RepositoryAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repository.RepositoryAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Repository.RepositoryAuthenticationType NONE
public static final Repository.RepositoryAuthenticationType PASSWORD
public static final Repository.RepositoryAuthenticationType SSH
public static final Repository.RepositoryAuthenticationType SSL_CLIENT_CERTIFICATE
public static final Repository.RepositoryAuthenticationType SHARED_CREDENTIALS
public static Repository.RepositoryAuthenticationType[] values()
for (Repository.RepositoryAuthenticationType c : Repository.RepositoryAuthenticationType.values()) System.out.println(c);
public static Repository.RepositoryAuthenticationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.