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