remove obsolete properties from user and group

This commit is contained in:
Eduard Heimbuch
2020-03-02 11:26:15 +01:00
parent b6208240ab
commit 8618a27ec8
2 changed files with 0 additions and 2 deletions

View File

@@ -24,7 +24,6 @@ public class GroupDto extends HalRepresentation {
@Pattern(regexp = ValidationUtil.REGEX_NAME)
private String name;
private String type;
private Map<String, String> properties;
private List<String> members;
private boolean external;

View File

@@ -30,7 +30,6 @@ public class UserDto extends HalRepresentation {
@JsonInclude(JsonInclude.Include.NON_NULL)
private String password;
private String type;
private Map<String, String> properties;
UserDto(Links links, Embedded embedded) {
super(links, embedded);