Enum BitbucketSshCredentialsSource
- java.lang.Object
-
- java.lang.Enum<BitbucketSshCredentialsSource>
-
- com.atlassian.bamboo.plugins.bitbucket.BitbucketSshCredentialsSource
-
- All Implemented Interfaces:
Serializable
,Comparable<BitbucketSshCredentialsSource>
public enum BitbucketSshCredentialsSource extends Enum<BitbucketSshCredentialsSource>
Source of SSH keypair authentication credentials for Bitbucket Cloud 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 BitbucketSshCredentialsSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static BitbucketSshCredentialsSource[]
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 BitbucketSshCredentialsSource SHARED_CREDENTIALS
Use shared credentials to obtain SSH key and passphrase.- See Also:
PrivateKeyCredentials
-
CUSTOM
public static final BitbucketSshCredentialsSource CUSTOM
Use custom, user provided SSH key and passphrase.
-
-
Method Detail
-
values
public static BitbucketSshCredentialsSource[] 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 (BitbucketSshCredentialsSource c : BitbucketSshCredentialsSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BitbucketSshCredentialsSource 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
-
-