Skip to content
Snippets Groups Projects

LS AAI and dev

Merged Ghost User requested to merge lsaai_tpl into main
12 files
+ 204
17
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -338,6 +338,18 @@ public class ClientDetailsEntity implements ClientDetails {
@Column(name = "parent_client_id")
private Long parentClientId;
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(name = "client_only_allowed_idps", joinColumns = @JoinColumn(name = "owner_id"))
@Column(name = "idp_entity_id")
@CascadeOnDelete
private Set<String> onlyAllowedIdps;
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(name = "client_blocked_idps", joinColumns = @JoinColumn(name = "owner_id"))
@Column(name = "idp_entity_id")
@CascadeOnDelete
private Set<String> blockedIdps;
@Transient
private Map<String, Object> additionalInformation = new HashMap<>();
Loading