File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/configuration Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -317,18 +317,32 @@ public void setHistoryBasedReindex(boolean flag) {
317
317
this .historyBasedReindex = flag ;
318
318
}
319
319
320
+ /**
321
+ * Set username to be used for repository authentication.
322
+ * @param username username
323
+ */
320
324
public void setUsername (String username ) {
321
325
this .username = username ;
322
326
}
323
327
328
+ /**
329
+ * @return username used for repository authentication
330
+ */
324
331
public String getUsername () {
325
332
return username ;
326
333
}
327
334
335
+ /**
336
+ * Set password to be used for repository authentication.
337
+ * @param password password
338
+ */
328
339
public void setPassword (String password ) {
329
340
this .password = password ;
330
341
}
331
342
343
+ /**
344
+ * @return password used for repository authentication
345
+ */
332
346
public String getPassword () {
333
347
return password ;
334
348
}
You can’t perform that action at this time.
0 commit comments