Package org.apache.camel.component.jira
Class JiraConfiguration
java.lang.Object
org.apache.camel.component.jira.JiraConfiguration
- All Implemented Interfaces:
Cloneable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()
getDelay()
void
setAccessToken
(String accessToken) (OAuth or Personal Access Token authentication) The access token generated by the Jira server.void
setConsumerKey
(String consumerKey) (OAuth only) The consumer key from Jira settings.void
Time in milliseconds to elapse for the next poll.void
setJiraUrl
(String jiraUrl) The Jira server url, example: http://my_jira.com:8081void
setPassword
(String password) (Basic authentication only) The password or the API Token to authenticate to the Jira server.void
setPrivateKey
(String privateKey) (OAuth only) The private key generated by the client to encrypt the conversation to the server.void
setUsername
(String username) (Basic authentication only) The username to authenticate to the Jira server.void
setVerificationCode
(String verificationCode) (OAuth only) The verification code from Jira generated in the first step of the authorization proccess.
-
Constructor Details
-
JiraConfiguration
public JiraConfiguration()
-
-
Method Details
-
getVerificationCode
-
setVerificationCode
(OAuth only) The verification code from Jira generated in the first step of the authorization proccess. -
getConsumerKey
-
setConsumerKey
(OAuth only) The consumer key from Jira settings. -
getPrivateKey
-
setPrivateKey
(OAuth only) The private key generated by the client to encrypt the conversation to the server. -
getAccessToken
-
setAccessToken
(OAuth or Personal Access Token authentication) The access token generated by the Jira server. -
getJiraUrl
-
setJiraUrl
The Jira server url, example: http://my_jira.com:8081 -
getDelay
-
setDelay
Time in milliseconds to elapse for the next poll.- Parameters:
delay
- Integer time in milliseconds
-
getUsername
-
setUsername
(Basic authentication only) The username to authenticate to the Jira server. Use only if OAuth is not enabled on the Jira server. Do not set the username and OAuth token parameter, if they are both set, the username basic authentication takes precedence. -
getPassword
-
setPassword
(Basic authentication only) The password or the API Token to authenticate to the Jira server. Use only if username basic authentication is used. -
copy
-