File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/synopsys/integration/jira/common/server/configuration Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,22 +98,22 @@ protected JiraServerRestConfig buildWithoutValidation() {
98
98
@ Override
99
99
protected void validate (BuilderStatus builderStatus ) {
100
100
if (StringUtils .isBlank (getUrl ())) {
101
- builderStatus .addErrorMessage ("The Jira Cloud url must be specified." );
101
+ builderStatus .addErrorMessage ("The Jira server url must be specified." );
102
102
} else {
103
103
try {
104
104
URL blackDuckURL = new URL (getUrl ());
105
105
blackDuckURL .toURI ();
106
106
} catch (MalformedURLException | URISyntaxException e ) {
107
- builderStatus .addErrorMessage (String .format ("The provided Jira Cloud url (%s) is not a valid URL." , getUrl ()));
107
+ builderStatus .addErrorMessage (String .format ("The provided Jira server url (%s) is not a valid URL." , getUrl ()));
108
108
}
109
109
}
110
110
111
111
if (StringUtils .isBlank (getAuthUsername ())) {
112
- builderStatus .addErrorMessage ("The Jira Cloud user name must be specified." );
112
+ builderStatus .addErrorMessage ("The Jira server user name must be specified." );
113
113
}
114
114
115
115
if (StringUtils .isBlank (getAuthPassword ())) {
116
- builderStatus .addErrorMessage ("The Jira Cloud access token must be specified." );
116
+ builderStatus .addErrorMessage ("The Jira server access token must be specified." );
117
117
}
118
118
119
119
if (getTimeoutInSeconds () <= 0 ) {
You can’t perform that action at this time.
0 commit comments