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.



16212
16213
16214
# File 'lib/kaltura_types.rb', line 16212

def hash_algorithm
  @hash_algorithm
end

#param_prefixObject

Returns the value of attribute param_prefix.



16211
16212
16213
# File 'lib/kaltura_types.rb', line 16211

def param_prefix
  @param_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16215
16216
16217
16218
16219
16220
16221
16222
16223
# File 'lib/kaltura_types.rb', line 16215

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