Template for a Spring Boot project including Spring REST, HATEOAS, JPA, etc. Additional details: HELP.md
For ... who want to ... the project ... is an ... that allows ... Unlike other ...
| USER | ADMIN |
|---|---|
| Register | |
| Login | |
| Logout | |
classDiagram
class UriEntity {
uri : String
}
class UserDetails
<<interface>> UserDetails
class User {
username : String
password : String
email : String
}
class Resource {
name: String
description: String
created: ZonedDateTime
modified: ZonedDateTime
}
UriEntity <|-- User
UserDetails <|-- User
UriEntity <|-- Resource
User "1" <-- "*" Resource: owner