Class: PrincipalAuthenticationContext

Inherits:
Object
  • Object
show all
Defined in:
lib/default.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(application = nil, credential = nil, name = nil, validationFactors = nil) ⇒ PrincipalAuthenticationContext

Returns a new instance of PrincipalAuthenticationContext.



60
61
62
63
64
65
# File 'lib/default.rb', line 60

def initialize(application = nil, credential = nil, name = nil, validationFactors = nil)
  @application = application
  @credential = credential
  @name = name
  @validationFactors = validationFactors
end

Instance Attribute Details

#applicationObject

Returns the value of attribute application.



55
56
57
# File 'lib/default.rb', line 55

def application
  @application
end

#credentialObject

Returns the value of attribute credential.



56
57
58
# File 'lib/default.rb', line 56

def credential
  @credential
end

#nameObject

Returns the value of attribute name.



57
58
59
# File 'lib/default.rb', line 57

def name
  @name
end

#validationFactorsObject

Returns the value of attribute validationFactors.



58
59
60
# File 'lib/default.rb', line 58

def validationFactors
  @validationFactors
end