Class: Kaltura::KalturaDistributionFieldConfig
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaDistributionFieldConfig
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#entry_mrss_xslt ⇒ Object
An XSLT string that extracts the right value from the Kaltura entry MRSS XML.
-
#field_name ⇒ Object
A value taken from a connector field enum which associates the current configuration to that connector field Field enum class should be returned by the provider’s getFieldEnumClass function.
-
#is_default ⇒ Object
Is this field config is the default for the distribution provider?.
-
#is_required ⇒ Object
Is the field required to have a value for submission ?.
-
#update_on_change ⇒ Object
Trigger distribution update when this field changes or not ?.
-
#update_params ⇒ Object
Entry column or metadata xpath that should trigger an update.
-
#user_friendly_field_name ⇒ Object
A string that will be shown to the user as the field name in error messages related to the current field.
Attributes inherited from KalturaObjectBase
Method Summary
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_mrss_xslt ⇒ Object
An XSLT string that extracts the right value from the Kaltura entry MRSS XML.
The value of the current connector field will be the one that is returned from transforming the Kaltura entry MRSS XML using this XSLT string.
244 245 246 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 244 def entry_mrss_xslt @entry_mrss_xslt end |
#field_name ⇒ Object
A value taken from a connector field enum which associates the current configuration to that connector field
Field enum class should be returned by the provider's getFieldEnumClass function.
237 238 239 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 237 def field_name @field_name end |
#is_default ⇒ Object
Is this field config is the default for the distribution provider?
256 257 258 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 256 def is_default @is_default end |
#is_required ⇒ Object
Is the field required to have a value for submission ?
247 248 249 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 247 def is_required @is_required end |
#update_on_change ⇒ Object
Trigger distribution update when this field changes or not ?
250 251 252 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 250 def update_on_change @update_on_change end |
#update_params ⇒ Object
Entry column or metadata xpath that should trigger an update
253 254 255 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 253 def update_params @update_params end |
#user_friendly_field_name ⇒ Object
A string that will be shown to the user as the field name in error messages related to the current field
240 241 242 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 240 def user_friendly_field_name @user_friendly_field_name end |