Class: JWTSessions::StoreAdapters::AbstractStoreAdapter
- Inherits:
-
Object
- Object
- JWTSessions::StoreAdapters::AbstractStoreAdapter
show all
- Defined in:
- lib/jwt_sessions/store_adapters/abstract_store_adapter.rb
Instance Method Summary
collapse
-
#all_refresh_tokens(_namespace) ⇒ Object
-
#destroy_access(_uid) ⇒ Object
-
#destroy_refresh(_uid, _namespace) ⇒ Object
-
#fetch_access(_uid) ⇒ Object
-
#fetch_refresh(_uid, _namespace) ⇒ Object
-
#persist_access(_uid, _csrf, _expiration) ⇒ Object
-
#persist_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _expiration:, _namespace:) ⇒ Object
-
#update_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _namespace:) ⇒ Object
Instance Method Details
#all_refresh_tokens(_namespace) ⇒ Object
26
27
28
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 26
def all_refresh_tokens(_namespace)
raise NotImplementedError
end
|
#destroy_access(_uid) ⇒ Object
34
35
36
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 34
def destroy_access(_uid)
raise NotImplementedError
end
|
#destroy_refresh(_uid, _namespace) ⇒ Object
30
31
32
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 30
def destroy_refresh(_uid, _namespace)
raise NotImplementedError
end
|
#fetch_access(_uid) ⇒ Object
6
7
8
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 6
def fetch_access(_uid)
raise NotImplementedError
end
|
#fetch_refresh(_uid, _namespace) ⇒ Object
14
15
16
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 14
def fetch_refresh(_uid, _namespace)
raise NotImplementedError
end
|
#persist_access(_uid, _csrf, _expiration) ⇒ Object
10
11
12
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 10
def persist_access(_uid, _csrf, _expiration)
raise NotImplementedError
end
|
#persist_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _expiration:, _namespace:) ⇒ Object
18
19
20
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 18
def persist_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _expiration:, _namespace:)
raise NotImplementedError
end
|
#update_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _namespace:) ⇒ Object
22
23
24
|
# File 'lib/jwt_sessions/store_adapters/abstract_store_adapter.rb', line 22
def update_refresh(_uid:, _access_expiration:, _access_uid:, _csrf:, _namespace:)
raise NotImplementedError
end
|