Package io.jenkins.plugins.railflow
Interface JiraParameters
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
JiraParametersImpl
Holds the parameters for connecting to Atlassian.
- Author:
- Liu Yang
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic JiraParameters.Builder
New builder.Gets the DONE status name.getEmail()
Gets the Atlassian account email.Gets the issue type name.Gets the Atlassian jira url.Gets the lookup field name.Gets the project key.int
Gets the connection timeout to the Atlassian REST API service.Gets the TO DO status name.getToken()
Gets the token of the Atlassian account email.
-
Method Details
-
builder
static JiraParameters.Builder builder(String jiraUrl, String email, String token, String projectKey) New builder.- Parameters:
jiraUrl
- the Atlassian Jira URL.email
- the Atlassian user email address.token
- the token of the Atlassian user.projectKey
- the project key.- Returns:
- builder.
-
getJiraUrl
Gets the Atlassian jira url.- Returns:
- the Atlassian jira url.
-
getEmail
Gets the Atlassian account email.- Returns:
- the Atlassian account email.
-
getToken
Gets the token of the Atlassian account email.- Returns:
- the token of the Atlassian account email.
-
getProjectKey
Gets the project key.- Returns:
- the project key.
-
getTimeout
int getTimeout()Gets the connection timeout to the Atlassian REST API service.- Returns:
- the connection timeout in seconds
-
getTodoStatusName
Gets the TO DO status name.- Returns:
- the TO DO status name.
-
getDoneStatusName
Gets the DONE status name.- Returns:
- the DONE status name.
-
getIssueTypeName
Gets the issue type name.- Returns:
- the issue type name.
-
getLookupFieldName
Gets the lookup field name.- Returns:
- the lookup field name.
-