open class JiraIssueTracker : ProjectFeature
Project feature enabling integration with JIRA issue tracker
See Also
JiraIssueTracker(init: JiraIssueTracker.() -> Unit) JiraIssueTracker()
Project feature enabling integration with JIRA issue tracker |
var cloudClientID: String?
A Client ID for JIRA Cloud integration via its Build and Deployment APIs |
|
var cloudSecret: String?
A Secret for JIRA Cloud integration via its Build and Deployment APIs |
|
var displayName: String?
Issue tracker integration display name |
|
var host: String?
JIRA server URL |
|
var password: String?
A password for JIRA connection |
|
var projectKeys: String? |
|
var useAutomaticKeys: Boolean?
Automatically populate JIRA Project keys |
|
var userName: String?
A username for JIRA connection |
var id: String?
Project feature id, if not specified will be generated |
|
var type: String
Project feature type |
open fun validate(consumer: ErrorConsumer): Unit
Validates this object and reports found errors to the provided consumer |
open fun create(): ProjectFeature
Creates an instance of this project feature via reflection using a no argument constructor, used during copying. Throws an error if this class doesn't have a default constructor. Subclasses can override it to create an instance without using a default constructor. |
|
open fun toString(): String |