Class: Kaltura::KalturaIdeticDistributionProfile
- Inherits:
-
KalturaConfigurableDistributionProfile
- Object
- KalturaObjectBase
- KalturaDistributionProfile
- KalturaConfigurableDistributionProfile
- Kaltura::KalturaIdeticDistributionProfile
- Defined in:
- lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#domain ⇒ Object
Returns the value of attribute domain.
-
#ftp_path ⇒ Object
Returns the value of attribute ftp_path.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Attributes inherited from KalturaConfigurableDistributionProfile
#field_config_array, #item_xpaths_to_extend, #use_category_entries
Attributes inherited from KalturaDistributionProfile
#auto_create_flavors, #auto_create_thumb, #created_at, #delete_enabled, #distribute_trigger, #id, #name, #optional_asset_distribution_rules, #optional_flavor_params_ids, #optional_thumb_dimensions, #partner_id, #provider_type, #recommended_dc_for_download, #recommended_dc_for_execute, #recommended_storage_profile_for_download, #report_enabled, #required_asset_distribution_rules, #required_flavor_params_ids, #required_thumb_dimensions, #status, #submit_enabled, #sunrise_default_offset, #sunset_default_offset, #support_image_entry, #update_enabled, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#domain ⇒ Object
Returns the value of attribute domain.
73 74 75 |
# File 'lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb', line 73 def domain @domain end |
#ftp_path ⇒ Object
Returns the value of attribute ftp_path.
70 71 72 |
# File 'lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb', line 70 def ftp_path @ftp_path end |
#password ⇒ Object
Returns the value of attribute password.
72 73 74 |
# File 'lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb', line 72 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
71 72 73 |
# File 'lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb', line 71 def username @username end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/kaltura_plugins/kaltura_idetic_distribution_client_plugin.rb', line 76 def from_xml(xml_element) super if xml_element.elements['ftpPath'] != nil self.ftp_path = xml_element.elements['ftpPath'].text end if xml_element.elements['username'] != nil self.username = xml_element.elements['username'].text end if xml_element.elements['password'] != nil self.password = xml_element.elements['password'].text end if xml_element.elements['domain'] != nil self.domain = xml_element.elements['domain'].text end end |