KEYCLOAK-4862: Expose client description in ClientBean

This commit is contained in:
Johannes Knutsen 2017-05-05 13:50:04 +02:00
parent e1b6ba13cc
commit 47a8077426

View file

@ -46,6 +46,10 @@ public class ClientBean {
return client.getName();
}
public String getDescription() {
return client.getDescription();
}
public String getBaseUrl() {
return ResolveRelative.resolveRelativeUri(requestUri, client.getRootUrl(), client.getBaseUrl());
}