-
Notifications
You must be signed in to change notification settings - Fork 229
Closed
Labels
Description
After I run s2-quickstart at cmd and trying to create User, Role.
On the domain class for User, Role, UserRole
String toString(){
username
}
User(String username, String password) {
this()
this.username = username
this.password = password
}
This is missing for User domain
Role(String authority) { this() this.authority = authority } String toString(){ authority }
is missing for Role domain
UserRole(User u, Role r) { this() user = u role = r }
Is missing on UserRole domain