name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getRealm(): string { return $this->realm; } public function setRealm(string $realm): static { $this->realm = $realm; return $this; } public function getBaseUrl(): string { return $this->baseUrl; } public function setBaseUrl(string $baseUrl): static { $this->baseUrl = $baseUrl; return $this; } public function getHostUrl(): string { return $this->hostUrl; } public function setHostUrl(string $hostUrl): static { $this->hostUrl = $hostUrl; return $this; } public function getClientId(): string { return $this->clientId; } public function setClientId(string $clientId): static { $this->clientId = $clientId; return $this; } public function getClientSecret(): string { return $this->clientSecret; } public function setClientSecret(string $clientSecret): static { $this->clientSecret = $clientSecret; return $this; } public function getFrontendClientId(): string { return $this->frontendClientId; } public function setFrontendClientId(string $frontendClientId): static { $this->frontendClientId = $frontendClientId; return $this; } public function getDefaultRole(): ?AclRole { return $this->defaultRole; } public function setDefaultRole(?AclRole $defaultRole): static { $this->defaultRole = $defaultRole; return $this; } }