Class: Virtuozzo::SOAP::Types::Authm::Authenticate

Inherits:
Auth_nameType
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/authm.rb

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/authmauthenticate

name - SOAP::SOAPBase64
domain - SOAP::SOAPBase64
realm - (any)
password - SOAP::SOAPBase64

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, domain = nil, realm = nil, password = nil) ⇒ Authenticate

Returns a new instance of Authenticate.



2348
2349
2350
2351
2352
2353
# File 'lib/virtuozzo/soap/types/authm.rb', line 2348

def initialize(name = nil, domain = nil, realm = nil, password = nil)
  @name = name
  @domain = domain
  @realm = realm
  @password = password
end

Instance Attribute Details

#domainObject

Returns the value of attribute domain.



2344
2345
2346
# File 'lib/virtuozzo/soap/types/authm.rb', line 2344

def domain
  @domain
end

#nameObject

Returns the value of attribute name.



2343
2344
2345
# File 'lib/virtuozzo/soap/types/authm.rb', line 2343

def name
  @name
end

#passwordObject

Returns the value of attribute password.



2346
2347
2348
# File 'lib/virtuozzo/soap/types/authm.rb', line 2346

def password
  @password
end

#realmObject

Returns the value of attribute realm.



2345
2346
2347
# File 'lib/virtuozzo/soap/types/authm.rb', line 2345

def realm
  @realm
end