Class: Ecircle::Configuration
- Inherits:
-
Object
- Object
- Ecircle::Configuration
- Defined in:
- lib/ecircle/configuration.rb
Constant Summary collapse
- WSDL =
'http://webservices.ecircle-ag.com/soap/ecm.wsdl'- ENDPOINT =
'http://webservices.ecircle-ag.com/rpc'- NAMESPACE =
"http://webservices.ecircleag.com/rpcns"
Instance Attribute Summary collapse
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#namespace ⇒ Object
Returns the value of attribute namespace.
-
#password ⇒ Object
Returns the value of attribute password.
-
#realm ⇒ Object
Returns the value of attribute realm.
-
#user ⇒ Object
Returns the value of attribute user.
-
#wsdl ⇒ Object
Returns the value of attribute wsdl.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
9 10 11 12 13 |
# File 'lib/ecircle/configuration.rb', line 9 def initialize @wsdl = WSDL @endpoint = ENDPOINT @namespace = NAMESPACE end |
Instance Attribute Details
#endpoint ⇒ Object
Returns the value of attribute endpoint.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def endpoint @endpoint end |
#namespace ⇒ Object
Returns the value of attribute namespace.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def namespace @namespace end |
#password ⇒ Object
Returns the value of attribute password.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def password @password end |
#realm ⇒ Object
Returns the value of attribute realm.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def realm @realm end |
#user ⇒ Object
Returns the value of attribute user.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def user @user end |
#wsdl ⇒ Object
Returns the value of attribute wsdl.
7 8 9 |
# File 'lib/ecircle/configuration.rb', line 7 def wsdl @wsdl end |