Package org.bremersee.dccon.api
Interface DomainManagementApi
-
@Validated public interface DomainManagementApi
The domain management api.- Author:
- Christian Bremer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<org.bremersee.dccon.model.PasswordInformation>
getPasswordInformation()
Get password information.org.springframework.http.ResponseEntity<org.bremersee.dccon.model.Password>
getRandomPassword()
Gets random password.
-
-
-
Method Detail
-
getPasswordInformation
@RequestMapping(value="/api/domain/password-information", produces="application/json", method=GET) org.springframework.http.ResponseEntity<org.bremersee.dccon.model.PasswordInformation> getPasswordInformation()
Get password information.- Returns:
- the password information
-
getRandomPassword
@RequestMapping(value="/api/domain/random-password", produces="application/json", method=GET) org.springframework.http.ResponseEntity<org.bremersee.dccon.model.Password> getRandomPassword()
Gets random password.- Returns:
- the random password
-
-