Package org.n52.iceland.config
Interface AdministratorUser
-
- All Known Implementing Classes:
JsonAdministratorUser
public interface AdministratorUserInterface for users that are allowed to administer the service. Implementations areSettingsServicespecific.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPassword()Get the value of password.StringgetUsername()Get the value of username.voidsetPassword(String password)Set the value of password.voidsetUsername(String username)Set the value of username.
-
-
-
Method Detail
-
getPassword
String getPassword()
Get the value of password.- Returns:
- the value of password
-
getUsername
String getUsername()
Get the value of username.- Returns:
- the value of username
-
setPassword
void setPassword(String password)
Set the value of password.- Parameters:
password- new value of password
-
setUsername
void setUsername(String username)
Set the value of username.- Parameters:
username- new value of username
-
-