Class: Kaltura::KalturaUrlTokenizerVelocix

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

#auth_prefixObject

secure URL prefix



15997
15998
15999
# File 'lib/kaltura_types.rb', line 15997

def auth_prefix
  @auth_prefix
end

#hds_pathsObject

hdsPaths



15993
15994
15995
# File 'lib/kaltura_types.rb', line 15993

def hds_paths
  @hds_paths
end

#param_nameObject

tokenParamName



15995
15996
15997
# File 'lib/kaltura_types.rb', line 15995

def param_name
  @param_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16000
16001
16002
16003
16004
16005
16006
16007
16008
16009
16010
16011
# File 'lib/kaltura_types.rb', line 16000

def from_xml(xml_element)
	super
	if xml_element.elements['hdsPaths'] != nil
		self.hds_paths = xml_element.elements['hdsPaths'].text
	end
	if xml_element.elements['paramName'] != nil
		self.param_name = xml_element.elements['paramName'].text
	end
	if xml_element.elements['authPrefix'] != nil
		self.auth_prefix = xml_element.elements['authPrefix'].text
	end
end