Class: PagoPA::SOAP::Configurable

Inherits:
Object
  • Object
show all
Defined in:
lib/pago_pa/soap/configurable.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfigurable

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.expand_path("../../../resources/pagopa_base.wsdl", __dir__)
  @wsdl_notify ||=
    File.expand_path("../../../resources/pagopa_avvisi.wsdl", __dir__)
end

Instance Attribute Details

#endpoint_baseObject

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_notifyObject

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

#namespaceObject

Returns the value of attribute namespace.



24
25
26
# File 'lib/pago_pa/soap/configurable.rb', line 24

def namespace
  @namespace
end

#wsdl_baseObject

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_notifyObject

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