Class: PagoPA::SOAP::Configurable
- Inherits:
-
Object
- Object
- PagoPA::SOAP::Configurable
- Defined in:
- lib/pago_pa/soap/configurable.rb
Instance Attribute Summary collapse
-
#endpoint_base ⇒ Object
Returns the value of attribute endpoint_base.
-
#endpoint_notify ⇒ Object
Returns the value of attribute endpoint_notify.
-
#namespace ⇒ Object
Returns the value of attribute namespace.
-
#wsdl_base ⇒ Object
Returns the value of attribute wsdl_base.
-
#wsdl_notify ⇒ Object
Returns the value of attribute wsdl_notify.
Instance Method Summary collapse
-
#initialize ⇒ Configurable
constructor
A new instance of Configurable.
Constructor Details
#initialize ⇒ Configurable
Returns a new instance of Configurable.
30 31 32 33 34 35 36 |
# File 'lib/pago_pa/soap/configurable.rb', line 30 def initialize @namespace ||= "PagoPA" @wsdl_base ||= File.("../../../resources/pagopa_base.wsdl", __dir__) @wsdl_notify ||= File.("../../../resources/pagopa_avvisi.wsdl", __dir__) end |
Instance Attribute Details
#endpoint_base ⇒ Object
Returns the value of attribute endpoint_base.
27 28 29 |
# File 'lib/pago_pa/soap/configurable.rb', line 27 def endpoint_base @endpoint_base end |
#endpoint_notify ⇒ Object
Returns the value of attribute endpoint_notify.
28 29 30 |
# File 'lib/pago_pa/soap/configurable.rb', line 28 def endpoint_notify @endpoint_notify end |
#namespace ⇒ Object
Returns the value of attribute namespace.
24 25 26 |
# File 'lib/pago_pa/soap/configurable.rb', line 24 def namespace @namespace end |
#wsdl_base ⇒ Object
Returns the value of attribute wsdl_base.
25 26 27 |
# File 'lib/pago_pa/soap/configurable.rb', line 25 def wsdl_base @wsdl_base end |
#wsdl_notify ⇒ Object
Returns the value of attribute wsdl_notify.
26 27 28 |
# File 'lib/pago_pa/soap/configurable.rb', line 26 def wsdl_notify @wsdl_notify end |