Class: Kaltura::KalturaFtpDropFolder

Inherits:
KalturaRemoteDropFolder show all
Defined in:
lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaDropFolder

#auto_file_delete_days, #categories_metadata_field_name, #conversion_profile_id, #created_at, #dc, #description, #enforce_entitlement, #error_code, #error_description, #file_delete_policy, #file_handler_config, #file_handler_type, #file_name_patterns, #file_size_check_interval, #id, #ignore_file_name_patterns, #incremental, #last_accessed_at, #last_file_timestamp, #metadata_profile_id, #name, #partner_id, #path, #should_validate_ks, #status, #tags, #type, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#hostObject

Returns the value of attribute host.



722
723
724
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 722

def host
  @host
end

#passwordObject

Returns the value of attribute password.



725
726
727
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 725

def password
  @password
end

#portObject

Returns the value of attribute port.



723
724
725
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 723

def port
  @port
end

#usernameObject

Returns the value of attribute username.



724
725
726
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 724

def username
  @username
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



731
732
733
734
735
736
737
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 731

def from_xml(xml_element)
	super
	self.host = xml_element.elements['host'].text
	self.port = xml_element.elements['port'].text
	self.username = xml_element.elements['username'].text
	self.password = xml_element.elements['password'].text
end