mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
Replaced AttributeType with AssertionType
Closes #40027 Signed-off-by: Anchels <mishtitov@gmail.com>
This commit is contained in:
parent
856293b7cc
commit
ec59b36193
@ -50,12 +50,12 @@ public class EntityAttributes implements Serializable {
|
||||
return assertion;
|
||||
}
|
||||
|
||||
public void addAssertion(AssertionType attributeType) {
|
||||
assertion.add(attributeType);
|
||||
public void addAssertion(AssertionType assertionType) {
|
||||
assertion.add(assertionType);
|
||||
}
|
||||
|
||||
public void removeAssertion(AttributeType attributeType) {
|
||||
assertion.remove(attributeType);
|
||||
public void removeAssertion(AssertionType assertionType) {
|
||||
assertion.remove(assertionType);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user