KEYCLOAK-857 add getter/setter for principalAttribute to AdapterDeploymentContext
This commit is contained in:
parent
8abbcca76b
commit
829f9f4386
1 changed files with 10 additions and 0 deletions
|
@ -404,6 +404,16 @@ public class AdapterDeploymentContext {
|
|||
public boolean isRegisterNodeAtStartup() {
|
||||
return delegate.isRegisterNodeAtStartup();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPrincipalAttribute() {
|
||||
return delegate.getPrincipalAttribute();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPrincipalAttribute(String principalAttribute) {
|
||||
delegate.setPrincipalAttribute(principalAttribute);
|
||||
}
|
||||
}
|
||||
|
||||
protected KeycloakUriBuilder getBaseBuilder(HttpFacade facade, String base) {
|
||||
|
|
Loading…
Reference in a new issue