Skip to content

Commit af9d995

Browse files
committed
add javadoc
1 parent b54614c commit af9d995

File tree

1 file changed

+14
-0
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/configuration

1 file changed

+14
-0
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/Project.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)