Class: Kaltura::KalturaUrlTokenizerWowzaSecureToken
- Inherits:
-
KalturaUrlTokenizer
- Object
- KalturaObjectBase
- KalturaUrlTokenizer
- Kaltura::KalturaUrlTokenizerWowzaSecureToken
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#hash_algorithm ⇒ Object
Returns the value of attribute hash_algorithm.
-
#param_prefix ⇒ Object
Returns the value of attribute param_prefix.
Attributes inherited from KalturaUrlTokenizer
#key, #limit_ip_address, #window
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#hash_algorithm ⇒ Object
Returns the value of attribute hash_algorithm.
15590 15591 15592 |
# File 'lib/kaltura_types.rb', line 15590 def hash_algorithm @hash_algorithm end |
#param_prefix ⇒ Object
Returns the value of attribute param_prefix.
15589 15590 15591 |
# File 'lib/kaltura_types.rb', line 15589 def param_prefix @param_prefix end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15593 15594 15595 15596 15597 15598 15599 15600 15601 |
# File 'lib/kaltura_types.rb', line 15593 def from_xml(xml_element) super if xml_element.elements['paramPrefix'] != nil self.param_prefix = xml_element.elements['paramPrefix'].text end if xml_element.elements['hashAlgorithm'] != nil self.hash_algorithm = xml_element.elements['hashAlgorithm'].text end end |