Class: CGIParty::Configuration
- Inherits:
-
Object
- Object
- CGIParty::Configuration
- Defined in:
- lib/cgi_party.rb
Instance Attribute Summary collapse
-
#collect_polling_delay ⇒ Object
Returns the value of attribute collect_polling_delay.
-
#collect_polling_timeout ⇒ Object
Returns the value of attribute collect_polling_timeout.
-
#display_name ⇒ Object
Returns the value of attribute display_name.
-
#provider ⇒ Object
readonly
Returns the value of attribute provider.
-
#service_id ⇒ Object
Returns the value of attribute service_id.
-
#wsdl_path ⇒ Object
Returns the value of attribute wsdl_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
25 26 27 28 29 30 |
# File 'lib/cgi_party.rb', line 25 def initialize @collect_polling_timeout = 180 @collect_polling_delay = 3 @wsdl_path = WSDL_PATH @provider = "bankid" end |
Instance Attribute Details
#collect_polling_delay ⇒ Object
Returns the value of attribute collect_polling_delay.
19 20 21 |
# File 'lib/cgi_party.rb', line 19 def collect_polling_delay @collect_polling_delay end |
#collect_polling_timeout ⇒ Object
Returns the value of attribute collect_polling_timeout.
18 19 20 |
# File 'lib/cgi_party.rb', line 18 def collect_polling_timeout @collect_polling_timeout end |
#display_name ⇒ Object
Returns the value of attribute display_name.
20 21 22 |
# File 'lib/cgi_party.rb', line 20 def display_name @display_name end |
#provider ⇒ Object (readonly)
Returns the value of attribute provider.
23 24 25 |
# File 'lib/cgi_party.rb', line 23 def provider @provider end |
#service_id ⇒ Object
Returns the value of attribute service_id.
21 22 23 |
# File 'lib/cgi_party.rb', line 21 def service_id @service_id end |
#wsdl_path ⇒ Object
Returns the value of attribute wsdl_path.
22 23 24 |
# File 'lib/cgi_party.rb', line 22 def wsdl_path @wsdl_path end |