Module: Keycloak
- Defined in:
- lib/keycloak.rb,
lib/keycloak/version.rb,
lib/keycloak/exceptions.rb
Defined Under Namespace
Modules: Admin, Client, Internal Classes: KeycloakException, ProcCookieTokenNotDefined, ProcExternalAttributesNotDefined, UserLoginNotFound
Constant Summary collapse
- VERSION =
"2.3.2"
Class Attribute Summary collapse
-
.auth_server_url ⇒ Object
Returns the value of attribute auth_server_url.
-
.generate_request_exception ⇒ Object
Returns the value of attribute generate_request_exception.
-
.keycloak_controller ⇒ Object
Returns the value of attribute keycloak_controller.
-
.proc_cookie_token ⇒ Object
Returns the value of attribute proc_cookie_token.
-
.proc_external_attributes ⇒ Object
Returns the value of attribute proc_external_attributes.
-
.proxy ⇒ Object
Returns the value of attribute proxy.
-
.realm ⇒ Object
Returns the value of attribute realm.
Class Method Summary collapse
Class Attribute Details
.auth_server_url ⇒ Object
Returns the value of attribute auth_server_url.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def auth_server_url @auth_server_url end |
.generate_request_exception ⇒ Object
Returns the value of attribute generate_request_exception.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def generate_request_exception @generate_request_exception end |
.keycloak_controller ⇒ Object
Returns the value of attribute keycloak_controller.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def keycloak_controller @keycloak_controller end |
.proc_cookie_token ⇒ Object
Returns the value of attribute proc_cookie_token.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def end |
.proc_external_attributes ⇒ Object
Returns the value of attribute proc_external_attributes.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def proc_external_attributes @proc_external_attributes end |
.proxy ⇒ Object
Returns the value of attribute proxy.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def proxy @proxy end |
.realm ⇒ Object
Returns the value of attribute realm.
10 11 12 |
# File 'lib/keycloak.rb', line 10 def realm @realm end |
Class Method Details
.explode_exception ⇒ Object
16 17 18 19 20 21 |
# File 'lib/keycloak.rb', line 16 def self.explode_exception if Keycloak.generate_request_exception == nil Keycloak.generate_request_exception = true end Keycloak.generate_request_exception end |