@UriParams public class JiraConfiguration extends Object
Constructor and Description |
---|
JiraConfiguration() |
Modifier and Type | Method and Description |
---|---|
String |
getAccessToken() |
String |
getConsumerKey() |
Integer |
getDelay() |
String |
getJiraUrl() |
String |
getPassword() |
String |
getPrivateKey() |
String |
getUsername() |
String |
getVerificationCode() |
void |
setAccessToken(String accessToken)
(OAuth only) The access token generated by the Jira server.
|
void |
setConsumerKey(String consumerKey)
(OAuth only) The consumer key from Jira settings.
|
void |
setDelay(Integer delay)
Time in milliseconds to elapse for the next poll.
|
void |
setJiraUrl(String jiraUrl)
The Jira server url, example: http://my_jira.com:8081
|
void |
setPassword(String password)
(Basic authentication only) The password 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.
|
public String getVerificationCode()
public void setVerificationCode(String verificationCode)
public String getConsumerKey()
public void setConsumerKey(String consumerKey)
public String getPrivateKey()
public void setPrivateKey(String privateKey)
public String getAccessToken()
public void setAccessToken(String accessToken)
public String getJiraUrl()
public void setJiraUrl(String jiraUrl)
public Integer getDelay()
public void setDelay(Integer delay)
delay
- Integer time in millisecondspublic String getUsername()
public void setUsername(String username)
public String getPassword()
public void setPassword(String password)
Apache Camel