Class: Kaltura::KalturaUrlTokenizerAkamaiSecureHd

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

Instance Attribute Summary collapse

Attributes inherited from KalturaUrlTokenizer

#key, #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

#acl_postfixObject

Returns the value of attribute acl_postfix.



10384
10385
10386
# File 'lib/kaltura_types.rb', line 10384

def acl_postfix
  @acl_postfix
end

#custom_postfixesObject

Returns the value of attribute custom_postfixes.



10385
10386
10387
# File 'lib/kaltura_types.rb', line 10385

def custom_postfixes
  @custom_postfixes
end

#param_nameObject

Returns the value of attribute param_name.



10383
10384
10385
# File 'lib/kaltura_types.rb', line 10383

def param_name
  @param_name
end

#root_dirObject

Returns the value of attribute root_dir.



10387
10388
10389
# File 'lib/kaltura_types.rb', line 10387

def root_dir
  @root_dir
end

Returns the value of attribute use_cookie_hosts.



10386
10387
10388
# File 'lib/kaltura_types.rb', line 10386

def use_cookie_hosts
  @use_cookie_hosts
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10390
10391
10392
10393
10394
10395
10396
10397
# File 'lib/kaltura_types.rb', line 10390

def from_xml(xml_element)
	super
	self.param_name = xml_element.elements['paramName'].text
	self.acl_postfix = xml_element.elements['aclPostfix'].text
	self.custom_postfixes = xml_element.elements['customPostfixes'].text
	self.use_cookie_hosts = xml_element.elements['useCookieHosts'].text
	self.root_dir = xml_element.elements['rootDir'].text
end