File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/history Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -163,18 +163,32 @@ public void setHistoryEnabled(boolean flag) {
163
163
this .historyEnabled = flag ;
164
164
}
165
165
166
+ /**
167
+ * @return username to be used for authentication
168
+ */
166
169
String getUsername () {
167
170
return username ;
168
171
}
169
172
173
+ /**
174
+ * Set username to be used for authentication.
175
+ * @param username username
176
+ */
170
177
void setUsername (String username ) {
171
178
this .username = username ;
172
179
}
173
180
181
+ /**
182
+ * @return password to be used for authentication
183
+ */
174
184
String getPassword () {
175
185
return password ;
176
186
}
177
187
188
+ /**
189
+ * Set password to be used for authentication.
190
+ * @param password password
191
+ */
178
192
void setPassword (String password ) {
179
193
this .password = password ;
180
194
}
You can’t perform that action at this time.
0 commit comments