Package com.atlassian.bamboo.plugins.git
Enum GitSshCredentialsSource
- java.lang.Object
-
- java.lang.Enum<GitSshCredentialsSource>
-
- com.atlassian.bamboo.plugins.git.GitSshCredentialsSource
-
- All Implemented Interfaces:
Serializable
,Comparable<GitSshCredentialsSource>
public enum GitSshCredentialsSource extends Enum<GitSshCredentialsSource>
Source of SSH keypair authentication credentials for Git repository.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM
Use custom, user provided SSH key and passphrase.SHARED_CREDENTIALS
Use shared credentials to obtain SSH key and passphrase.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GitSshCredentialsSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static GitSshCredentialsSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHARED_CREDENTIALS
public static final GitSshCredentialsSource SHARED_CREDENTIALS
Use shared credentials to obtain SSH key and passphrase.- See Also:
PrivateKeyCredentials
-
CUSTOM
public static final GitSshCredentialsSource CUSTOM
Use custom, user provided SSH key and passphrase.
-
-
Method Detail
-
values
public static GitSshCredentialsSource[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GitSshCredentialsSource c : GitSshCredentialsSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GitSshCredentialsSource valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-