Class: Ecircle::Configuration

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#endpointObject

Returns the value of attribute endpoint.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def endpoint
  @endpoint
end

#namespaceObject

Returns the value of attribute namespace.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def namespace
  @namespace
end

#passwordObject

Returns the value of attribute password.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def password
  @password
end

#realmObject

Returns the value of attribute realm.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def realm
  @realm
end

#userObject

Returns the value of attribute user.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def user
  @user
end

#wsdlObject

Returns the value of attribute wsdl.



7
8
9
# File 'lib/ecircle/configuration.rb', line 7

def wsdl
  @wsdl
end