Class: Kaltura::KalturaUrlTokenizerWowzaSecureToken

Inherits:
KalturaUrlTokenizer show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#hash_algorithmObject

Returns the value of attribute hash_algorithm.



15719
15720
15721
# File 'lib/kaltura_types.rb', line 15719

def hash_algorithm
  @hash_algorithm
end

#param_prefixObject

Returns the value of attribute param_prefix.



15718
15719
15720
# File 'lib/kaltura_types.rb', line 15718

def param_prefix
  @param_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15722
15723
15724
15725
15726
15727
15728
15729
15730
# File 'lib/kaltura_types.rb', line 15722

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