Class: Virtuozzo::SOAP::Drivers::Process::Exec

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/drivers/process/types.rb

Overview

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

status - SOAP::SOAPInt
output - SOAP::SOAPBase64
error - SOAP::SOAPBase64

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status = nil, output = nil, error = nil) ⇒ Exec



2687
2688
2689
2690
2691
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2687

def initialize(status = nil, output = nil, error = nil)
  @status = status
  @output = output
  @error = error
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



2685
2686
2687
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2685

def error
  @error
end

#outputObject

Returns the value of attribute output.



2684
2685
2686
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2684

def output
  @output
end

#statusObject

Returns the value of attribute status.



2683
2684
2685
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2683

def status
  @status
end