Class: Virtuozzo::SOAP::Types::Filer::Chown::Owner

Inherits:
Virtuozzo::SOAP::Types::Filer::CredType show all
Defined in:
lib/virtuozzo/soap/types/filer.rb

Overview

inner class for member: owner http://www.swsoft.com/webservices/vzl/4.0.0/filerowner

user - SOAP::SOAPString
uid - SOAP::SOAPLong
group - SOAP::SOAPString
gid - SOAP::SOAPLong

Instance Attribute Summary collapse

Attributes inherited from Virtuozzo::SOAP::Types::Filer::CredType

#umask

Instance Method Summary collapse

Constructor Details

#initialize(user = nil, uid = nil, group = nil, gid = nil) ⇒ Owner

Returns a new instance of Owner.



2454
2455
2456
2457
2458
2459
# File 'lib/virtuozzo/soap/types/filer.rb', line 2454

def initialize(user = nil, uid = nil, group = nil, gid = nil)
  @user = user
  @uid = uid
  @group = group
  @gid = gid
end

Instance Attribute Details

#gidObject

Returns the value of attribute gid.



2452
2453
2454
# File 'lib/virtuozzo/soap/types/filer.rb', line 2452

def gid
  @gid
end

#groupObject

Returns the value of attribute group.



2451
2452
2453
# File 'lib/virtuozzo/soap/types/filer.rb', line 2451

def group
  @group
end

#uidObject

Returns the value of attribute uid.



2450
2451
2452
# File 'lib/virtuozzo/soap/types/filer.rb', line 2450

def uid
  @uid
end

#userObject

Returns the value of attribute user.



2449
2450
2451
# File 'lib/virtuozzo/soap/types/filer.rb', line 2449

def user
  @user
end