theme.keycloak.v2.account.resources.content.my-resources-page.resource-model.js Maven / Gradle / Ivy
export class Scope {
constructor(name, displayName) {
this.name = name;
this.displayName = displayName;
}
toString() {
if (this.hasOwnProperty('displayName') && this.displayName) {
return this.displayName;
} else {
return this.name;
}
}
}
//# sourceMappingURL=resource-model.js.map
© 2015 - 2024 Weber Informatics LLC | Privacy Policy