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) {
317317 this .historyBasedReindex = flag ;
318318 }
319319
320+ /**
321+ * Set username to be used for repository authentication.
322+ * @param username username
323+ */
320324 public void setUsername (String username ) {
321325 this .username = username ;
322326 }
323327
328+ /**
329+ * @return username used for repository authentication
330+ */
324331 public String getUsername () {
325332 return username ;
326333 }
327334
335+ /**
336+ * Set password to be used for repository authentication.
337+ * @param password password
338+ */
328339 public void setPassword (String password ) {
329340 this .password = password ;
330341 }
331342
343+ /**
344+ * @return password used for repository authentication
345+ */
332346 public String getPassword () {
333347 return password ;
334348 }
You can’t perform that action at this time.
0 commit comments