Class: Clarion::Stores::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/clarion/stores/base.rb

Direct Known Subclasses

Memory, S3

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Base

Returns a new instance of Base.



4
5
6
# File 'lib/clarion/stores/base.rb', line 4

def initialize(options={})
  @options = options
end

Instance Method Details

#find_authn(id) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/clarion/stores/base.rb', line 12

def find_authn(id)
  raise NotImplementedError
end

#store_authn(authn) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/clarion/stores/base.rb', line 8

def store_authn(authn)
  raise NotImplementedError
end