Package com.atlassian.bamboo.plugins.git
Enum GitPasswordCredentialsSource
- java.lang.Object
-
- java.lang.Enum<GitPasswordCredentialsSource>
-
- com.atlassian.bamboo.plugins.git.GitPasswordCredentialsSource
-
- All Implemented Interfaces:
Serializable
,Comparable<GitPasswordCredentialsSource>
public enum GitPasswordCredentialsSource extends Enum<GitPasswordCredentialsSource>
Source of username and password authentication credentials for Git repository.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM
Use custom, user provided username and password.SHARED_CREDENTIALS
Use shared credentials to obtain username and password.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GitPasswordCredentialsSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static GitPasswordCredentialsSource[]
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 GitPasswordCredentialsSource SHARED_CREDENTIALS
Use shared credentials to obtain username and password.
-
CUSTOM
public static final GitPasswordCredentialsSource CUSTOM
Use custom, user provided username and password.
-
-
Method Detail
-
values
public static GitPasswordCredentialsSource[] 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 (GitPasswordCredentialsSource c : GitPasswordCredentialsSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GitPasswordCredentialsSource 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
-
-