Class: VagrantPlugins::ProviderVirtualBox::Driver::Base::ExtendedStorageData

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(controller, port, location) ⇒ ExtendedStorageData

Returns a new instance of ExtendedStorageData.



93
94
95
96
97
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 93

def initialize(controller,port,location)
  @controller = controller
  @port = port
  @location = location
end

Instance Attribute Details

#controllerObject

Returns the value of attribute controller.



89
90
91
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 89

def controller
  @controller
end

#locationObject

Returns the value of attribute location.



91
92
93
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 91

def location
  @location
end

#portObject

Returns the value of attribute port.



90
91
92
# File 'lib/vagrant-extended-storage/providers/virtualbox/driver/base.rb', line 90

def port
  @port
end