Class: Soar::Authentication::Identity::Test::Orchestrator

Inherits:
Object
  • Object
show all
Defined in:
lib/soar/authentication/identity/test/orchestrator.rb

Instance Method Summary collapse

Constructor Details

#initialize(provider) ⇒ Orchestrator

Returns a new instance of Orchestrator.



9
10
11
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 9

def initialize(provider)
  @provider = provider
end

Instance Method Details

#given_authenticated_identifierNil

Returns:

  • (Nil)


23
24
25
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 23

def given_authenticated_identifier
  @provider.given_authenticated_identifier
end

#given_existing_identityNil

Returns:

  • (Nil)


16
17
18
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 16

def given_existing_identity
  @provider.given_existing_identity
end

#request_uuidNil

Returns:

  • (Nil)


30
31
32
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 30

def request_uuid
  @provider.request_uuid
end

#role?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 44

def role?
  @provider.role?
end

#uuid?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/soar/authentication/identity/test/orchestrator.rb', line 37

def uuid?
  @provider.uuid?
end