Skip to content

Commit b54614c

Browse files
committed
add javadoc
1 parent 974ca10 commit b54614c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/RepositoryInfo.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,18 +163,32 @@ public void setHistoryEnabled(boolean flag) {
163163
this.historyEnabled = flag;
164164
}
165165

166+
/**
167+
* @return username to be used for authentication
168+
*/
166169
String getUsername() {
167170
return username;
168171
}
169172

173+
/**
174+
* Set username to be used for authentication.
175+
* @param username username
176+
*/
170177
void setUsername(String username) {
171178
this.username = username;
172179
}
173180

181+
/**
182+
* @return password to be used for authentication
183+
*/
174184
String getPassword() {
175185
return password;
176186
}
177187

188+
/**
189+
* Set password to be used for authentication.
190+
* @param password password
191+
*/
178192
void setPassword(String password) {
179193
this.password = password;
180194
}

0 commit comments

Comments
 (0)