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.



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

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.



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

def domain
  @domain
end

#nameObject

Returns the value of attribute name.



2341
2342
2343
# File 'lib/virtuozzo/soap/types/authm.rb', line 2341

def name
  @name
end

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#realmObject

Returns the value of attribute realm.



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

def realm
  @realm
end