All Downloads are FREE. Search and download functionalities are using the official Maven repository.

theme.keycloak.v2.account.resources.content.my-resources-page.resource-model.js Maven / Gradle / Ivy

There is a newer version: 26.0.5
Show newest version
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