jira-integration: Add missing protected constructor to JiraConfiguration
Missing protected constructor in order to avoid wrong usage of the class (maybe someone could try to do "new JiraConfiguration()" instead of JiraConfiguration.create()). FEA: ItEr77S16JiraAndTimConnectorContributionIntegration
This commit is contained in:
parent
0bd1066d20
commit
bb914e7d10
1 changed files with 5 additions and 0 deletions
|
|
@ -37,6 +37,11 @@ public class JiraConfiguration extends BaseEntity {
|
|||
|
||||
private String jiraPassword;
|
||||
|
||||
/**
|
||||
* Constructor for Hibernate. Do not use!
|
||||
*/
|
||||
protected JiraConfiguration() {
|
||||
}
|
||||
|
||||
public boolean isJiraActivated() {
|
||||
return jiraActivated;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue